-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Emin's Website</title>
<script src="https://kit.fontawesome.com/3cdb12306f.js" crossorigin="anonymous"></script>
<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=Merriweather&family=Montserrat&family=Oswald&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<header class="header">
<img class="avatar" src="images/avatar.jpg" alt="avatar">
<h2 class="name">Emin Alp Arslan</h2>
</header>
<nav>
<ul>
<li><a href="#intro" class="intro active">Intro</a></li>
<li><a href="#skills" class="skills">Things I Can Do</a></li>
<li><a href="#projects" class="projects">A Few Accomplishments</a></li>
</ul>
</nav>
<footer class="footer">
<a href="https://github.com/eminalparslan" class="icon fa fa-github fa-3x" target="_blank"></a>
<a href="https://www.linkedin.com/in/emin-arslan-9ba099196/" class="icon fa fa-linkedin fa-3x" target="_blank"></a>
<a href="mailto: eminalp@utexas.edu" class="icon fa fa-envelope fa-3x"></a>
</footer>
</div>
<div class="wrapper">
<section id="intro">
<div class="banner">
<img src="images/banner.jpg" alt="banner">
</div>
<div class="container major">
<h1>Emin Alp Arslan</h1>
<p>Computer Science Freshman at UT Austin with an interest in all things Data Science and Machine Learning</p>
</div>
</section>
<hr>
<section id="skills">
<div></div>
</section>
<section id="projects">
<div></div>
</section>
</div>
<script src="scroll.js"></script>
</body>
</html>