-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 2.58 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
<html lang="en" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="jquery-3.3.1.min.js"></script>
<script src="gallery.js"></script>
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<h1 style="color: white;text-align: center;">Scroll The Page Slowly </h1>
<div class="gallery-container">
<h1 class="gallery-head">Photo Gallery</h1>
<div class="gallery">
<div class="item">
<figure class="pic">
<img src="model1.jpg" alt="" />
<figcaption>
<p>This is a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model2.jpg" alt="" />
<figcaption>
<p>This is a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model3.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
</div>
<div class="item">
<figure class="pic">
<img src="model4.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model5.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model6.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
</div>
<div class="item">
<figure class="pic">
<img src="model7.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model8.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
<figure class="pic">
<img src="model9.jpg" alt="" />
<figcaption>
<p>This a model <strong>ak10</strong></p>
</figcaption>
</figure>
</div>
</div>
</div>
</body>
</html>