-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (67 loc) · 3.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advaith Balaji | Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<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=Geologica:[email protected]&family=Manrope:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<div class="navbar-logo-left-6">
<div class="navbarcontainer">
<div class="navbarcontent">
<div class="navbarleftside">
<!--
<div class="navbarbrand">
<img src="images/mylogo2-1.png" loading="lazy" width="Auto" height="50" alt="" class="logo"/></div>
-->
<a href = "index.html">
<div class="text-24">Advaith Balaji</div>
</a>
</div>
<button class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</button>
<nav class="navbarmenu" id = "navMenu">
<a href="index.html" class="navlink">
<div>home</div>
</a>
<a href="projects.html" class="navlink">
<div>projects</div>
</a>
<a href = "resume.html" class="navlink">
<div>resume</div>
</a>
</nav>
</div>
</div>
</div>
</head>
<body>
<div class = "introduction">
<div class = "introleft">
<img src = "images/me.webp">
</div>
<div class = "introright ">
<h1 class = "typed-out">Hello, I'm Advaith!</h1>
<h5>Hey there! My name is Advaith, and I build robots. My interests lie in perception, control and algorithms for robotics. I enjoy endowing robots with the ability to see and reason about their surroundings to perform tasks intelligently. Check out my projects and resume! </h5>
<div class = "iconrow">
<a href = "[email protected]">
<i class="fa-solid fa-envelope"></i>
</a>
<a href = "linkedin.com/in/advaithb">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href = "github.com/adi-balaji">
<i class="fa-brands fa-github"></i>
</a>
</div>
</div>
<script src="js/script.js">
</script>
</body>
</html>