-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 967 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title> Juan Pol</title>
<link href='https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!--Banner starts here.-->
<div id="banner">
<img id="icon" src="images/icon.png">
<p>Juan Pol</p>
<nav>
<ul>
<li>
<a href="about.html">
About
</a>
</li>
<li>
<a href="contact.html">
Contact
</a>
</li>
<li>
<a href="home.html">
Home
</a>
</li>
</ul>
</nav>
</div>
<!-- Page content goes here-->
<div id="content">
<div id="homeText">
<p>Developing for ease.</p>
</div>
<div id="comment">
<p>Full stack developer ready to find solutions for you.</p>
</div>
<div id="buttons">
<div class="button">
<p>About</p>
</div>
<div class="button">
<p>Contact</p>
</div>
</div>
</div>
</body>
</html>