-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Manoj">
<meta name="description" content="This page contains all the things while I am learning how to create a portfolio website as I learn HTML.">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<title> MyPersonal Portofolio Website </title>
<link rel="icon" href= "icon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="main">
<div class="navbar">
<div class="icon">
<h2 class="logo">Portfolio website</h2>
</div>
<div class="menu">
<ul>
<li><a href="aboutme.html">About </a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="contact.html" target="_blank/">Contact</a></li>
</ul>
</div>
</div>
</div>
<hr>
<<< © <a href="about.html">Manoj </a> >>>
<p>
<a href="#">Back to top</a>
</p>
</body>
</html>