-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·58 lines (54 loc) · 1.41 KB
/
index.html
File metadata and controls
executable file
·58 lines (54 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Flex Panels Image Gallery</title>
<link href="../index.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
</head>
<body class="container">
<div class="main">
<h1 class="main__title">
<a href="../index.html" class="main__back-btn">←</a>
Flex Panels Image Gallery
</h1>
<p class="main__description">
Let's create a pretty cool gallery using CSS Flexbox.
</p>
<div class="panels">
<div class="panels__panel panels__panel--1">
<p>Hey</p>
<p>Let's</p>
<p>Dance</p>
</div>
<div class="panels__panel panels__panel--2">
<p>Give</p>
<p>Take</p>
<p>Receive</p>
</div>
<div class="panels__panel panels__panel--3">
<p>Experience</p>
<p>It</p>
<p>Today</p>
</div>
<div class="panels__panel panels__panel--4">
<p>Give</p>
<p>All</p>
<p>You can</p>
</div>
<div class="panels__panel panels__panel--5">
<p>Life</p>
<p>In</p>
<p>Motion</p>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<span>Check out Sacret's <a href="https://github.com/Sacret">GitHub</a>
and <a href="https://twitter.com/Sacret19">Twitter</a></span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>