-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.86 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.86 KB
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
<!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>portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="sidebar sidebarGo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/intro.html">My Intro</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/contact.html">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hamburger">
<img class="ham"src="ham.png"alt=""width="23">
<img class="cross"src="cross.png" alt="" width="23">
</div>
<div class="infoContainer">
<div class="devInfo">
<div class="hello">WELOCOME TO MY PAGE</div>
<div class="name">AMAN KUMAR </div>
<div class="about"> </div>
<div class="moreabout"> Learn and function effectively in an organization where I would be able to utilize my capabilities to deliver
the bottom line and, in the process, add value to the organization and my career.</div>
<div class="buttons">
<a href="/cv.html"><button class="btn">Download cv</button></a>
<a href="/contact.html"><button class="btn">Contact me</button></a>
</div>
</div>
<div class="devPic"><img src="dev.png" alt="Aman Kumar"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>