-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (77 loc) · 2.87 KB
/
Copy pathindex.html
File metadata and controls
83 lines (77 loc) · 2.87 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aarush Resume</title>
<link rel="Stylesheet" href="style.css" />
</head>
<body>
<main>
<nav class="navbar">
<h1>Portfolio</h1>
<div class="navmenu">
<a href="#aboutMe">About Me</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="https://www.linkedin.com/in/aarush-wasnik-016120248"
>Let's Connect</a
>
</div>
</nav>
<section class="heroSection">
<img class="profileImage" src="/images/person-svgrepo-com.svg" />
<div class="heroSectionDetails">
<h1>Aarush Wasnik</h1>
<h3>Web Developer</h3>
<h4>From India</h4>
<!-- Download Resume Button -->
<a
class="resume-button"
id="resume-button"
>Download Resume</a
>
</div>
</section>
<section class="aboutMe" id="aboutMe">
<h1>About Me</h1>
<p>
I am a Web Developer and have good knowledge of programming languages
like C++, JavaScript, and Python. And have also worked on real-time
projects based on JavaScript. I seek challenging opportunities where I
can utilize my skills to contribute to the success and growth of the
organization.
</p>
</section>
<section class="skillsProjects">
<div class="skills" id="skills">
<h1 class="cardHeading">Skills</h1>
<img src="/images/cpp3-svgrepo-com.svg" title="C++" />
<img src="/images/python-svgrepo-com.svg" title="Python">
<img src="/images/html-5-svgrepo-com.svg" title="HTML" />
<img src="/images/css-3-svgrepo-com.svg" title="CSS" />
<img src="/images/javascript-svgrepo-com.svg" title="JavaScript" />
<img src="/images/nodejs-svgrepo-com.svg" title="Node.JS" />
<img src="/images/mongodb-logo-svgrepo-com.svg" title="MongoDB" />
</div>
<div class="projects" id="projects">
<h1 class="cardHeading">Projects</h1>
<div class="projectContainer">
<img src="/images/project-svgrepo-com.svg" />
<div class="projectDescription">
<h4>Web Search Engine For Turf Booking</h4>
<p>
A search engine with a variety of criteria will assist in
locating precise results based on the requirement in terms of
price, location, and rating. This engine will sort all the
turf's existing websites and displays the best offer for the
customer.
</p>
</div>
</div>
</div>
</section>
</main>
<script src="index.js"></script>
</body>
</html>