-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (74 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Photo Template | Gabriel Sousa Front-end Developer</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap" rel="stylesheet">
<script src="js/script.js"></script>
</head>
<body>
<!-- Sidebar menu -->
<div id="mySidebar" style="display: none;">
<div class="top-btn">
<img src="img/close-btn.png" class="exit-btn" onclick="btnClose()">
</div>
<nav>
<a href="">About</a>
<a href="">Photos</a>
<a href="">Shop</a>
<a href="">Contact</a>
</nav>
</div>
<!-- PAGE CONTENT -->
<!-- header -->
<header id="header" class="text-align-center s-width-100 middle">
<div class="top-bar">
<h1 class="hide-logo">
<b class="uppercase">Photolio</b>
</h1>
<img src="img/hamburger-btn.png" class="open-btn middle" onclick="btnOpen()">
</div>
<h1>
<b class="logo uppercase">Photolio</b>
</h1>
<p>
A template made by w3.css for photographers.
</p>
</header>
<div id="boxGrid" class="s-width-100 middle">
<div>
<img src="img/rocks.jpg">
<img src="img/sound.jpg">
<img src="img/woods.jpg">
<img src="img/rock.jpg">
<img src="img/nature.jpg">
<img src="img/mist.jpg">
</div>
<div>
<img src="img/coffee.jpg">
<img src="img/bridge.jpg" alt="">
<img src="img/notebook.jpg" alt="">
<img src="img/london.jpg" alt="">
<img src="img/rocks.jpg" alt="">
<img src="img/avatar_g.jpg" alt="">
</div>
<div>
<img src="img/mist.jpg" alt="">
<img src="img/workbench.jpg" alt="">
<img src="img/gondol.jpg" alt="">
<img src="img/skies.jpg" alt="">
<img src="img/lights.jpg" alt="">
<img src="img/workshop.jpg" alt="">
</div>
</div>
<footer class="text-align-center">
<p>
Recreated by Gabriel Sousa from
<a href="">W3.css</a>
</p>
</footer>
</body>
</html>