-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.62 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="sidebar sidebarGo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/skills.html">Skills</a></li>
<li><a href="/social_links.html">Social Links</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="hamburger" width="54px">
<img class="cross" src="cross.png" alt="cross"width="48px">
</div>
<div class="infoContainer">
<div class="myInfo">
<div class="hello">Hi I am</div>
<div class="name">Hamim Rahman</div>
<div class="about">I am a student. Currently I am studying at Software Engineering department in SUST at Sylhet. I love solving problems and doing coding projects.</div>
<div class="buttons">
<button>Download CV</button>
<a href="contact.html" target="_blank"><button>Contact Me</button></a>
</div>
</div>
<div class="myPic"><img src="img.jpeg"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>