-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (116 loc) · 4.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Haris' Homepage</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="navBar">
<img src="logo.png" alt="Logo">
<div>
<a href="https://www.caranddriver.com/"> Car & Driver </a>
<a href="https://www.gordonramsay.com/"> Cooking </a>
<a href="https://www.linkedin.com/in/hljubuncic/"> LinkedIn </a>
<a href="https://github.com/hljubuncic2002"> GitHub </a>
<a href="http://www.cs.gsu.edu/"> <span>GSU CS Department</span> </a>
</div>
</div>
<div class="quote">
<h1> "Silence is golden when you can't think of an answer"</h1>
<h2> - Muhammad Ali</h2>
</div>
<div class="gridContainer">
<div class="portraitBox">
<img src="picture.jpg" alt="My Photo" width="225" >
<h3> About Me </h3>
<ul>
<li> My name is Haris Ljubuncic </li>
<li> I work as an engineer at a company that makes energy management infrastructure </li>
<li> Currently, I'm studying <span> Computer Science @ GSU </span> </li>
<li> #StateNotSouthern </li>
<li> I have two dogs </li>
<li> My favorite programming language is Python </li>
<li> I want to learn JavaScript, C++ and SQL </li>
<li> Coffee is one of my favorite things to drink </li>
</ul>
</div>
<div class="tableOutline">
<h3> My Hobbies </h3>
<ul>
<li> Cars </li>
<li><span> Programming </span>
<ul>
<li> LeetCode </li>
<li> Web Programming</li>
</ul>
</li>
<li><a href="https://www.barnesandnoble.com/"> Reading </a> </li>
</ul>
<h3> My favorite cars </h3>
<ol>
<li><a href="https://www.caranddriver.com/honda"> Honda </a></li>
<li><a href="https://www.caranddriver.com/toyota"> Toyota </a></li>
<li><a href="https://www.caranddriver.com/mazda"> Mazda </a></li>
</ol>
</div>
<div class="zebraTable">
<table>
<tr>
<td> ASSIGNMENT </td>
<td> ASSIGNMENT LINK </td>
<td> DUE DATE </td>
</tr>
<tr>
<td> CW0 </td>
<td><a href="https://codd.cs.gsu.edu/~lhenry23/Web/cws/cw00/Activity0_num1.pdf"> Link </a></td>
<td> 1/23/24 </td>
</tr>
<tr>
<td> CW1 </td>
<td><a href="https://codd.cs.gsu.edu/~lhenry23/Web/cws/cw01/CW_Activity_01.pdf"> Link </a></td>
<td> 1/28/24 </td>
</tr>
<tr>
<td> HW1 </td>
<td><a href="https://codd.cs.gsu.edu/~lhenry23/Web/HW/Asg01/Assignment1.html"> Link </a></td>
<td> 02/04/24 </td>
</tr>
<tr>
<td> CW2 </td>
<td><a href="https://codd.cs.gsu.edu/~lhenry23/Web/cws/cw03/Css_Activity2b.html"> Link </a></td>
<td> 2/05/24 </td>
</tr>
</table>
</div>
<div class="career">
<header> Education and <mark>Dream Jobs</mark></header>
<div>
<ul>
<li> Education
<ul>
<li> Dacula High School </li>
<li> Georgia Gwinnett College
<ul>
<li> I took a summer semester here </li>
</ul>
</li>
<li> <span>Georgia State University</span> </li>
</ul>
</li>
</ul>
<ul>
<li> <mark>Dream Jobs</mark>
<ol>
<li> <mark>Software Engineer</mark> </li>
<li> <mark>Front-End Developer</mark> </li>
<li> <mark>Project Manager</mark> </li>
<li><a href="Ljubuncic-Resume.pdf"> My Resume </a></li>
</ol>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>