-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (77 loc) · 2.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aman Maharshi</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container-fluid">
<ul class="nav nav-pills">
<li><a href="#">Aman</a></li>
<li class="pull-right"><a href="#">Contact</a></li>
<li class="pull-right"><a href="#">Portfolio</a></li>
<li class="pull-right"><a href="#pageTwo">About Me</a></li>
</ul>
</div>
<div class="pageOne">
<h1>Aman Maharshi</h1>
<h4>Font-End Web Developer</h4>
<div class="btnList">
<a href="https://facebook.com/amanmaharshi" class="btn btn-default">Facebook</a>
<a href="https://github.com/aman-maharshi" class="btn btn-default">GitHub</a>
<a href="https://in.linkedin.com/in/aman-maharshi-3077b952" class="btn btn-default">LinkedIn</a>
</div>
</div>
<div class="pageTwo" id="pageTwo">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12 text-center info">
<p>
The name is Aman and I'm an front-end web developer, with extensive practical experience in brand strategy,
creative direction and project management. Also a huge fan of semantics and futuristic interfaces.
</p> <br>
<p class="skills">
HTML, CSS, Bootstrap, JavaScript, jQuery
</p>
</div>
<div class="col-md-6 col-sm-12 text-center dp">
<img class="img-circle" src="img/me.png" />
</div>
</div>
</div>
</div>
<div class="pageThree" id="pageThree">
<div class="container">
<div class="row project-outer-box">
<div class="col-md-3 col-sm-12 text-center project-box">
Project 1
</div>
<div class="col-md-3 col-sm-12 text-center project-box">
Project 2
</div>
<div class="col-md-3 col-sm-12 text-center project-box">
Project 3
</div>
</div>
<br>
<div class="row project-outer-box">
<div class="col-md-4 col-sm-12 text-center project-box">
Project 4
</div>
<div class="col-md-4 col-sm-12 text-center project-box">
Project 5
</div>
<div class="col-md-4 col-sm-12 text-center project-box">
Project 6
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.3.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>