-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<title>Ashwin Kundeti</title>
<link id="mainStyleSheet" rel="stylesheet" type="text/css" href="style1.css">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<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=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Ashwin Kundeti</h1>
</header>
<div class="whole">
<div class="column left">
<nav>
<ul>
<li><a href="index.html">About me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="ashwin_resume.pdf">Qualifications</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="game.html">AI Page</a></li>
<li><button onclick="toggleStyleSheet()" type="button">Style</button></li>
</ul>
</nav>
</div>
<div class="column right">
<main>
<section id="intro" class="center-section">
<img src="propic.JPG" alt="Picture of Ashwin Kundeti" class="clip">
<h2>Howdy, I'm not Ashwin</h2>
<p>I am a Computer Engineering Major here at Texas A&M University.
I was born and raised in Colorado Springs, then I moved to the Dallas area around 2013.
The reason I chose this major is due to my interest in the technology field. I love hearing
about new innovations and seeing technology evolve over the years. I also wanted to bridge the gap
between software and hardware and understand how both of them work together. Computer Engineering
is also a very broad major and allows me to explore the industry and find something I enjoy.
</p>
</section>
<section id="contact" class="center-section">
<h2>Links</h2>
<a href="https://www.linkedin.com/in/ashwin-kundeti/">
<img src="linkedin.png" alt="linkedin">
</a>
<a href="https://www.github.com/ashwin-k22">
<img src="github.png" alt="github">
</a>
<a href="mailto:ashwin.kundeti@gmail.com">
<img src="gmail.png" alt="gmail">
</a>
<a href="https://www.instagram.com/ashwin_k22/?hl=en">
<img src="insta.png" alt="instagram">
</a>
<a href="https://devpost.com/ashwin-kundeti">
<img src="devpost.png" alt="devpost">
</a>
</section>
</main>
</div>
</div>
<footer>
<p>Copyright © 2022 Ashwin Kundeti</p>
</footer>
<script src="functions.js"></script>
</body>
</html>