-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (54 loc) · 1.86 KB
/
index.html
File metadata and controls
68 lines (54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Avinash Yerra</title>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Roboto&family=Fira+Code&display=swap" rel="stylesheet">
<script defer src="https://umami-portfolio.onrender.com/script.js" data-website-id="46373895-3859-4565-a6a9-f80be3afa929"></script>
</head>
<body>
<nav>
<a href="#skills">Skills</a>
<a href="#education">Education</a>
<a href="#experience">Experience</a>
<!-- <a href="#projects">Projects</a> -->
<a href="blogs/blogs.html">Blogs</a>
<a href="#socials">Contact</a>
<button id="theme-toggle" class="theme-btn">🌙</button>
</nav>
<header>
<h1 id="name"></h1>
<p id="role"></p>
<p>Reach out to me at: <a id="email" href=""></a></p>
<!-- <button onclick="copyText()">Copy</button> -->
</header>
<section id="skills">
<h2>Skills</h2>
<ul id="skills-list"></ul>
</section>
<section id="education">
<h2>Education</h2>
<ul id="education-list"></ul>
</section>
<section id="experience">
<h2>Experience</h2>
<ul id="experience-list"></ul>
</section>
<!-- <section id="projects">
<h2>Projects</h2>
<ul id="projects-list"></ul>
</section> -->
<section id="blogs">
<h2>My Blogs</h2>
<p>I blog about my interview experiences and few technical things in my own way.</p>
<a href="blogs/blogs.html" class="blog-button">View All Blogs →</a>
</section>
<section id="socials">
<h2>Connect with me</h2>
<ul id="socials-list"></ul>
</section>
<script src="script.js"></script>
</body>
</html>