-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 2.44 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 2.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<header>
<div class="name-logo">
Justin Nikolic
</div>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/justinnikolic" target="_blank">Projects</a></li>
</ul>
</nav>
</header>
<!-- Main Section with Background Image -->
<section class="hero">
<div class="hero-content">
<h1>Welcome to My Website</h1>
<p>Explore my projects and learn more about me.</p>
</div>
</section>
<section class="personal-interest">
<h2>My Personal Interests</h2>
<p>
I am a fourth year computer science and business administration major with concentrations in finance and international business. I want to get into project management which combines both my technical skills and interpersonal skills which I have developed throughout my time at university.
</p>
<p>
I am interested in real estate, consulting, project management, product management, software engineering, data analytics, and cyber security. At my previous co-op at Harvard Law School, I was an Information Technology Specialist and learned a lot about managing technology, troubleshooting, and being resourceful. One of our responsibilities was to tend to and maintain the printers, which we had to reload with paper and solve any problems.
</p>
<p>
We pushed management for a project, so they let us complete this project. We used HTML, Python, and CSS to style a form to fill out during our daily printer check. We then used that data to find trends and report to management so they could prepare for these trends. It was a lot of fun figuring out how to accomplish this project because there was no rubric and it was open-ended. We spent several days writing on whiteboards to plan the project and how we were going to execute.
</p>
</section>
<footer>
<p>Contact me at: <a href="nikolic.j@northeastern.edu">nikolic.j@northeastern.edu</a></p>
</footer>
</body>
</html>