-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Portfolio Website</title>
<!----CSS link----->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="hero">
<nav>
<img src="logo.jpg" class="logo" />
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="My resume.pdf" class="btn">Resume</a>
</nav>
<div class="content">
<span class="title"> Web Developer</span>
<h1>Hello, I’m <span>Avish Raghav</span></h1>
<p>
I am an Engineering Student. Currently I pursuing my B.Tech in Information Technology from SKITM&G , JAIPUR. Currently, I am doing a remote Internship in Web Development and Designing from Coding Saathi. You can have a look at my resume.
</p>
<a href="My resume.pdf" class="btn">Download CV</a>
</div>
</div>
</body>
</html>