-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVideos.html
66 lines (61 loc) · 3.05 KB
/
Videos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Muslim Garden | Videos</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
<!--Jquery-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript Bootstrap-->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd"
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link href="https://themuslimgarden.github.io/stylesheets/main.css" rel="stylesheet">
</head>
<body>
<div id="content">
<h1 id='sectionTitle'>Videos</h1>
</div>
<script src="https://themuslimgarden.github.io/scripts/flowers.js"></script>
<script src="https://themuslimgarden.github.io/scripts/preview.js"></script>
<script>
var Videos = [
{
name: "As Hab Al-Ukhdud",
description: "This talks about Ashab Alukdud (the people of the ditches) , a story from the Quran",
URL: "Videos/V1",
imgSrc: "images/As Hab Al-Ukhdud Preview Image.png",
},
{
name: "The Year of the Elephant",
description: "This talks about the year of the elephant, when an evil ruler tried to destroy the Ka'bah.",
URL: "Videos/V2",
imgSrc: "images/Year Of Elephant Preview Image.png",
},
{
name: "The Righteous Actions",
description: "This Story talks about how three men got stuck in a cave, and how they got out.",
URL: "Videos/V3",
imgSrc: "images/The Righteous Actions preview image.png",
},
{
name: "The Three Allah Tested",
description: "This story talks about the story of three men and how Allah (SW) tested them.",
URL: "Videos/V4",
imgSrc: "images/The Three Allah Tested.png",
},
];
drawBoxes(Videos);
</script>
<script src="https://themuslimgarden.github.io/scripts/header.js"></script>
</body>
</html>