-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (93 loc) · 2.51 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<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" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="stories-container">
<!-- <div class="content">
<img src="images/1-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/2-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/3-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/4-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/5-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/6-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/7-thumb.png" alt="" />
</div>
<div class="content">
<img src="images/8-thumb.png" alt="" />
</div> -->
</div>
<div class="story-full">
<div class="content">
<div class="close-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="#fff"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</div>
<div class="left-arrow">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="#fff"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 19l-7-7 7-7"
/>
</svg>
</div>
<img src="images/1.png" alt="" />
<div class="right-arrow">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="#fff"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M9 5l7 7-7 7"
/>
</svg>
</div>
<div class="title">Test Title</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>