-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.92 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.92 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Home</title>
<link href="Style.css" rel="stylesheet" type="text/css">
<!--Fonts for website-->
<link href="https://fonts.google.com/specimen/Dangrek" rel="stylesheet">
<link href="https://fonts.google.com/specimen/Montserrat" rel="stylesheet">
<link href="https://fonts.google.com/specimen/Nunito" rel="stylesheet">
</head>
<body>
<nav class="top-bar">
<div class="logo"><a href="index.html"><img src="Pictures/Logo/LogoWithText.png" alt="Logo"/></a></div>
<input id="activate" type="checkbox"/>
<label class="box" for="activate">
<div class="icon"></div>
</label>
<ul class="menu">
<a href="index.html"><li class="pages" id="top-element"><h1>HOME</h1></li></a>
<a href="about.html"><li class="pages" id="middle-element"><h1>ABOUT</h1></li></a>
<a href="contact.html"><li class="pages" id="bottom-element"><h1>CONTACT</h1></li></a>
</ul>
</nav>
<div class="rows"> <!--flex rows for categories-->
<div class="category-one" style="flex-grow: 1">
<a href="books.html"><img class="category-picture" src="Pictures/Categories/Book.png" alt="Book category"/></a>
<h1 class="category-text">Books</h1>
<div class="category-footer"></div>
</div>
<div class="category-two" style="flex-grow: 1">
<a href="drawings.html"><img class="category-picture" src="Pictures/Categories/Drawing.png" alt="Drawings Categoy"/></a>
<h1 class="category-text">Drawings</h1>
<div class="category-footer"></div>
</div>
<div class="category-three" style="flex-grow: 1">
<a href="blender.html"><img class="category-picture" src="Pictures/Categories/Blender.png" alt="Blender Category"/></a>
<h1 class="category-text">Blender</h1>
<div class="category-footer"></div>
</div>
</div>
<div class="footer">
<div class="footer-two" style="flex-grow: 1">
<a href="drawings.html"><img class="category-picture" src="Pictures/Logo/LogoNoText.png" alt="Drawings Categoy"/></a>
</div>
</div>
</body>
</html>