-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZortaZert's Website</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="./img/icons/chadoku.ico">
</head>
<body>
<h1>Zortazert</h1>
<p>Hi! This is my website an aggregation of all my creations. Click on all the buttons bellow.</p>
<br>
<br>
<div id="circle">
<a href="./blog/index.html">
<div class="navButton" id="navButton1">
<p>Blog</p>
</div>
</a>
<a href="./art.html">
<div class="navButton" id="navButton2">
<p>Art</p>
</div>
</a>
<a href="./code.html">
<div class="navButton" id="navButton3">
<p>Code</p>
</div>
</a>
<a href="./contact.html">
<div class="navButton" id="navButton4">
<p>Contact</p>
</div>
</a>
<a href="">
<div class="navButton" id="navButton5">
<p>???</p>
</div>
</a>
<a href="./sitemap.html">
<div class="navButton" id="navButton6">
<p>Sitemap</p>
</div>
</a>
<a href="">
<div class="navButton" id="navButton7">
<p>???</p>
</div>
</a>
</div>
</body>
</html>