-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
115 lines (102 loc) · 3.97 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
<!DOCTYPE HTML>
<!--
Astral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Selin G Onal</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper-->
<div id="wrapper">
<!-- Nav -->
<nav id="nav">
<a href="#" class="icon fa-home"><span>Home</span></a>
<a href="#aboutMe" class="icon fa-folder"><span>About Me</span></a>
<a href="#contact" class="icon fa-envelope"><span>Contact</span></a>
<a href="https://linkedin.com/in/selin-onal-456a25163/" class="icon fa-linkedin"><span>LinkedIn</span></a>
</nav>
<!-- Main -->
<div id="main">
<!-- Me -->
<article id="home" class="panel intro">
<header>
<h1>Hi, I'm Selin Onal</h1>
<p>Sophomore at the <a href="https://www.gwu.edu/">George Wasington University.</a></p>
<p>Computer Science 2021</p>
</header>
<a href="#aboutMe" class="jumplink pic">
<span class="arrow icon fa-chevron-right"><span>Learn about me</span></span>
<!-- <img src="images/me.jpg" alt="" /> -->
</a>
</article>
<!-- About Me -->
<article id="aboutMe" class="panel">
<header>
<h1>About Me</h1>
</header>
<p>
Hi there! If you've made it this far in welcome, I'm glad to have you here on my website! While you're here, let's get to know one another.
</p>
<p>
My name is <a href="https://github.com/selingonal">Selin Onal</a>, I'm currently a junior studying computer science, and I have a special interest in game development.
</p>
<p>
I also have a penchant for linguistics, philosophy, and dry British humor. If you have something you're really passionate about, I'd love to hear more about it!
</p>
<p>
If you click <a href="https://selingonal.github.io/TechnicalCoursework.pdf">here,</a> you can find more information about my skills and the type of classes I'm taking now!
</p>
<p>
If you'd like to see my resume, you can visit my LinkedIn paged via the 4th tab on this website, and contact me through there.
</p>
</article>
<!-- Contact -->
<article id="contact" class="panel">
<header>
<h2>Contact Me</h2>
</header>
<form method="POST" action = "contact.php">
<div>
<div class="row">
<div class="col-6 col-12-medium">
<input type="text" name="name" placeholder="Name" />
</div>
<div class="col-6 col-12-medium">
<input type="text" name="email" placeholder="Email" />
</div>
<div class="col-12">
<input type="text" name="subject" placeholder="Subject" />
</div>
<div class="col-12">
<textarea name="message" placeholder="Message" rows="6"></textarea>
</div>
<div class="col-12">
<input type="submit" value="Send Message" />
</div>
</div>
</div>
</form>
</article>
</div>
<!-- Footer -->
<div id="footer">
<ul class="copyright">
<li>© Untitled.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>