-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
173 lines (149 loc) · 7.09 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Indira Tatikola</title>
<link href="styles/minima.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/6a36c605f0.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="bubble" style="padding:0px 30px;">
<header class="site-header">
<div>
<a class="site-title" href="index.html">Indira Tatikola</a>
</div>
<nav class="site-nav">
<div class="trigger">
<a class="page-link" href="projects.html"><b>Projects</b></a>
</div>
</nav>
</header>
</div>
<div class="bubble" style="width:auto;">
<table class="main">
<tr>
<td>
<img src="/assets/img/headshot.jpeg" alt="My casual 'headshot' - also my LinkedIn/GitHub profile picture" />
<ul class="social-media-list">
<li>
<a href="mailto:[email protected]?subject=From-Website">
<i class="fa-solid fa-envelope" style="color:#828282; padding-right:5px;"></i>
<span>Outlook</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/indiratatikola">
<svg><use href="/assets/svg/minima-social-icons.svg#linkedin"></use></svg>
<span>LinkedIn</span>
</a>
</li>
<li>
<a href="https://github.com/itatikola">
<svg><use href="/assets/svg/minima-social-icons.svg#github"></use></svg>
<span>GitHub</span>
</a>
</li>
<li>
<a href="/assets/files/resume.pdf">
<i class="fa-solid fa-file" style="color:#828282; padding-right:5px;"></i>
<span>Resume</span>
</a>
</li>
</ul>
</td>
<td>
<p>Hi! Thanks so much for stopping by.</p>
<p>I'm a CS major at the Georgia Institute of Technology concentrating in Cybersecurity & Privacy and Systems & Architecture. I also am pursuing a minor in Law, Science & Technology with a strong interest in Internet & Telecommunications. </p>
<p>I have a strong passion for technology that makes our world more accessible and making technology more accessible for everyone in the world.</p>
<p>Outside of CS, I love...</p>
<ul>
<li>movies</li>
<li>fashion</li>
<li>running (kind of)</li>
</ul>
<p>Click on the <a class="page-link" href="projects.html"><b>Projects</b></a> tab!</p>
<p>Feel free to connect with me through any professional platform.</p>
</td>
</tr>
</table>
</div>
<script defer src="/scripts/numberGame.js"></script>
<script defer src="/scripts/sillyStory.js"></script>
<script defer src="scripts/superHeroes.js"></script>
<script defer src="scripts/bouncingBalls.js"></script>
<script defer src="scripts/asyncPractice.js"></script>
<script defer src="scripts/alarmAPI.js"></script>
<script defer src="scripts/message.js"></script>
<!--div class="bubble" style="display: flex; align-items: center; justify-content: center;" id="noteBubble">
<h1>Write me a message!</h1>
<form action="/" method="post" enctype="form-data" id="messageForm">
<textarea id="message" rows="2" cols="60" placeholder="Type here"></textarea>
</form>
<button type="submit" id="submitButton">Send</button>
</div-->
<!--div class="bubble" id="experimentOne">
<h1>Number Guessing Game</h1>
<p>We have selected a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.</p>
<div class="form">
<label for="guessField">Enter a guess: </label>
<input type="number" min="1" max="100" required id="guessField" class="guessField">
<input type="submit" value="Submit guess" class="guessSubmit">
</div>
<div class="resultParas">
<p class="guesses"></p>
<p class="lastResult"></p>
<p class="lowOrHi"></p>
</div>
</div>
<div class="bubble" id="experimentTwo">
<h1>Silly Story</h1>
<div>
<label for="customname">Enter custom name:</label>
<input id="customname" type="text" placeholder="" />
</div>
<div>
<label for="us">US</label> <input id="us" type="radio" name="ukus" value="us" checked />
<label for="uk">UK</label> <input id="uk" type="radio" name="ukus" value="uk" />
</div>
<div>
<button class="randomize">Generate Random Story</button>
</div>
<p class="story"></p>
</div>
<div class="bubble" id="experimentThree">
<h1>Superheroes</h1>
<div class="superhero">
<header>
</header>
<section>
</section>
</div>
</div>
<div class="bubble" id="experimentFour">
<div class="bouncing-balls">
<h1>Bouncing Balls</h1>
<p style="color: #aaa"></p>
<canvas>
</canvas>
</div>
</div>
<div class="bubble" id="experimentFive">
<button id="xhr">Click to start request</button>
<button id="reload">Reload Page</button>
<pre readonly class="event-log"></pre>
</div>
<div class="bubble" id="experimentSix">
<div>
<label for="name">Enter Name:</label>
<input id="name" type="text" placeholder="" />
</div>
<div>
<label for="delay">Enter Delay:</label>
<input id="delay" type="text" placeholder="" />
</div>
<button id="set-alarm">Set Alarm</button>
<div id="output"></div>
</div-->
</body>
</html>