-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 902 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shinernd Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1><a href="index.html">Shine<span>rnd</span></a></h1>
<h2>I can do all this through him who gives me strength.</h2>
</header><!--ejs-->
<nav>
<ul>
<li id="prf"><a href="pages/profile.html">profile</a></li>
<li><a href="pages/codes.html">codes</a></li>
<li><a href="pages/contents.html">contents</a></li>
<li><a href="pages/more.html">more</a></li>
</ul>
</nav>
<main>
<p>Hi, I'm <a href="pages/profile.html" class="name">SHINERND</a>.</p>
</main>
<footer>
<div id="left">made with HTML/CSS only</div>
<div id="right"><a href="pages/profile.html">Contact me</a></div>
</footer><!--ejs-->
</body>
</html>