-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 938 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
<!DOCTYPE html>
<head>
<meta name="description" content="Portfolio Website Using html,Css and a little bit of javascript">
<title>Munsif Ali</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<nav>
<span class="logo">Portfolio</span>
<ul>
<li><a href="#">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./service.html">Services</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="Education.html">Education</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="feedback.html">Feedback</a></li>
</ul>
</nav>
<section class="home">
<div class="firstline">Hye My Name is </div>
<div class="name">Munsif Ali</div>
<div>I am a Student of </div>
<div class="name">Cs</div>
</section>
</body>
</html>