-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
executable file
·55 lines (52 loc) · 1.72 KB
/
about.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
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pradip Khadka | Front End Developer</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400i,700,700i,800" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Pradip Khadka</h1>
<h2>Front End Developer</h2>
</a>
<nav>
<ul>
<li>
<a href="index.html">Portfolio</a>
</li>
<li>
<a href="about.html" class="selected">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<img src="img/pradp.jpg" alt="Photo of Pradip Khadka" class="profile-photo">
<h3>About</h3>
<p>Hi, I'm Pradip Khadka! This is my web design/development portfolio where I share all of my favorite work. When I'm not
developing things, I enjoy watching movies, listening musics, playing video games, drinking good coffee and more.</p>
<p>If you'd like to follow me on Twitter, my username is
<a href="http://twitter.com/pradpkhadka">@pradpkhadka</a>.</p>
</section>
<footer>
<a href="http://twitter.com/pradpkhadka">
<img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon">
</a>
<a href="http://facebook.com/iampradp">
<img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon">
</a>
<p>© 2017 Pradip Khadka.</p>
</footer>
</div>
</body>
</html>