-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (79 loc) · 3.42 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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="tabs">
<ul class="tabs-list">
<li><a href="home.html">Home</a></li>
<li><a href="index.html">About Me</a></li>
</ul>
</div>
<div class="header">
<h1>
<img src="images/websitelogo.jpg"></img>
</h1>
</div>
<div id = "container">
<div class="section">
<table>
<tr>
<h2 class="highlight-blue">
About Me
</h2>
</tr>
<tr>
<td>
<p >
Hi. Welcome to the introduction page! My name is Veronica Starchenko and I will be attending Cornell University in the fall to study Computer Science at the College of Engineering. I have been coding for about 3-4 years and this website will focus on the independent projects I've worked on.
</p>
<p>
<a href="https://www.linkedin.com/in/veronica-s-3a6bb11b1/"> LinkedIn </a>
</p>
<p>
Outside of programming, I enjoy hobbies and activities such as:
</p>
<ul id = "hobbies">
<li>Painting (especially gouache landscapes)</li>
<li>Playing video games</li>
<li>Reading (I love Lord of the Rings!)</li>
<li>Trying out new restaurants with my friends</li>
</ul>
</td>
<td>
<img src="images/aboutmeIMG.jpg"
width = 400px
height = 533px></img>
</td>
</tr>
</table>
</div>
<div class = "section">
<table>
<tr>
<h2 class ="highlight-blue">
My Journey
</h2>
</tr>
<tr>
<td>
<p>
Although I had a very early start in computer science when I created HTML profiles for people on forums, I didn't really start fully coding until my sophomore year of high school, where I took AP Computer Science Principles and discovered that I loved programming. I continued to take computer science classes in school, such as AP Computer Science A and a data structures class, as well as outside courses online such as CS50x and Codecademy.
</p>
</td>
<td>
<h1 id = "journeyimg">
<img src="images/journeyImg.jpg"
width = 300px
height = 400px></img>
</h1>
</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>