-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolia.html
48 lines (40 loc) · 1.79 KB
/
portfolia.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolia website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="portfolio_style.css">
</head>
<body>
<div class="hero">
<div class="nav">
<h1 class="logo">PORTFO<span>LIO</span></h1>
<ul>
<li><a href="#" target="_blank">Home</a></li>
<li><a href="#" target="_blank">About</a></li>
<li><a href="#" target="_blank">Projects</a></li>
<li><a href="#" target="_blank">Contact</a></li>
</ul>
<a href="#" class="btn">Subscribe</a>
</div>
<div class="content">
<h4>Hello, My name is </h4>
<h1>Misbah <span>Qadri</span></h1>
<h3>I am software developer</h3>
<form class="form" action="index.html" method="post">
<input type="email" name="email" id="mail" placeholder="Enter a email id">
<input type="submit" name="submit" value="Submit">
</form>
<div class="icon">
<a href="https://www.facebook.com/" target="blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com" target="blank"><i class="fa fa-twitter"></i></a>
<a href="https://plus.google.com" target="blank"><i class="fa fa-google-plus"></i></a>
<a href="https://www.linkedin.com" target="blank"><i class="fa fa-linkedin"></i></a>
<a href="https://pinterest.com" target="blank"><i class="fa fa-pinterest-p"></i></a>
</div>
</div>
</body>
</html>