-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (84 loc) · 2.83 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aman's Portfolio</title>
<link href="style.css" rel=stylesheet />
</head>
<body>
<nav class="navigation">
<div class="nav-brand"><bold>Aman1440</bold></div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/portfolio/projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="/portfolio/blogs.html">blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="images/hero.svg" />
<h1 class="hero-heading">I am Aman Singh
<span class="">A developer</span>
</h1>
</header>
<section class="section ow">
<div class="container-center">
<h1>
Technical Proficiency
</h1>
<p>
I have developed skills in languages like Cpp, Javascript, Python.
I also know to use Github, Web-hosting, React.js, Node.js,Linux.
</p>
</div>
</section>
<section class="section">
<div class="container-center">
<h1>
Projects
</h1>
<p>
Applying my learnings and practices in a way to showcase the abilities and
outcome through projects. The following projects have applications of above mentioned
technical languages and frameworks.
</p>
<a class="link-primary link" href="/portfolio/projects.html">See Projects</a>
</div>
</section>
<section class="section ow">
<div class="container-center">
<h1>
Blogs
</h1>
<p>
All about stories and learnings related to tech and travelling.
</p>
<a class="link-secondary" href="/portfolio/blogs.html">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Know me more at-</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/Aman1440">
Github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/amansingh_here">
Twitter</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://linkedin.com/in/aman1440">
Linkedin</a>
</li>
</ul>
</footer>
</body>
</html>