-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (62 loc) · 2.8 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
<!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">
<link rel="stylesheet" href="./css/styles.css">
<link rel="icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet">
<title>Navya</title>
</head>
<body>
<div class="top-container">
<img class="top-cloud" src="images/cloud.png" alt="cloud-img">
<h1>I'm Navya</h1>
<h2>A web developer in progess...👩💻 </h2>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud-img">
<img src="images/mountain.png" alt="mountain-img">
</div>
<div class="middle-container">
<div class="profile">
<img class="profile-pic" src="images\Navya_pic.png" alt="Navya's profile pic">
<h2>Hey There!</h2>
<p class="intro"> I love coding and reading books.I am eager towards learning new technologies and look
forward to
collaborate on projects.
</p>
</div>
<hr>
<div class="skills">
<h2>My Skills</h2>
<div class="skill-row">
<img class="cLang" src="images\c-.png" alt="c++">
<h3>C++</h3>
<p>I started learning C++ during 12th Grade.I am currently learning DSA and try out Leetcode questions
on a regular basis. </p>
</div>
<div class="skill-row">
<img class="web" src="images\web-development.png" alt="web design">
<h3>Basic Web Design</h3>
<p>I build simple websites using HTML,CSS,JS and Bootstrap(for styling).I have also worked on React and
Flask.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Free to Help</h2>
<p class="contact-message">If you are looking for collaborators for your project,then get in touch.</p>
<a class="btn" href="mailto:navyasraj2003@gmail.com">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/navya-s-raj-926602202">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/navyasraj?t=1LKZVbge1BNWn6t8MjFwfg&s=09">Twitter</a>
<a class="footer-link" href="https://www.instagram.com/_navya02">Instagram</a>
<p class="copyright">© Navya S Raj</p>
</div>
</body>
</html>