-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (93 loc) · 4.41 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
<!DOCTYPE html>
<html>
<head>
<title>Aspirinium</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="icon" href="imgs/aspicon.png">
<style>
body, html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("imgs/old_comp.jpeg");
min-height: 75%;
}
</style>
</head>
<body>
<!-- Links (sit on top) -->
<div class="w3-top">
<div class="w3-row w3-padding w3-black" style="alignment: center">
<div class="w3-col s3">
<a href="#" class="w3-button w3-block w3-black">HOME</a>
</div>
<div class="w3-col s3">
<a href="#about" class="w3-button w3-block w3-black">ABOUT</a>
</div>
<div class="w3-col s3">
<a href="#current_projects" class="w3-button w3-block w3-black">CURRENT PROJECTS</a>
</div>
<div class="w3-col s3">
<a href="#contact" class="w3-button w3-block w3-black">CONTACT</a>
</div>
</div>
</div>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-middle w3-center">
<span class="w3-text-white" style="font-size:90px">Aspirinium</span>
</div>
</header>
<!-- Add a background color and large text to the whole page -->
<div class="w3-sand w3-grayscale w3-large">
<!-- About Container -->
<div class="w3-container" id="about">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">CHEERS, MATES</span></h5>
<p>My name is Irina, but you can refer to me as Aspirina because of my pain-relieving qualities.</p>
<p>Besides being a professional pain-reliever, I also like to dabble in the finer things in life like reading mind-bending books, playing music, reading scientific articles on robotics and machine learning, and overall keeping my aspirinium molecules from getting too bored. So, naturally, I decided to start this website as a side project for all my side projects.</p>
</div>
</div>
<!-- Projects Container -->
<div class="w3-container" id="current_projects">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-48"><span class="w3-tag w3-wide">CURRENT PROJECTS</span></h5>
<div class="w3-row w3-card w3-padding w3-margin" style="background: white">
<a href="javascript:void(0)" onClick="window.open('https://aspirinium.github.io/cards_and_humanity/')">
<div class="w3-col s6 tablink">Cards and Humanity</div>
</a>
</div>
<div class="w3-row w3-card w3-padding w3-margin" style="background: white">
<a href="./start.html" onclick="">
<div class="w3-col s6 tablink">Möbius strip</div>
</a>
</div>
</div>
</div>
<!-- Contact Container -->
<div class="w3-container" id="contact" style="padding-bottom:32px;">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-48"><span class="w3-tag w3-wide">HOW TO CONTACT ME</span></h5>
<p>I cordially invite you to make an entrance into my inbox:</p>
<form action="https://formsubmit.co/4ae4ee13fa726c80a13827322c7038b8" method="POST" target="_blank">
<p><input class="w3-input w3-padding-16 w3-border" type="text" placeholder="Name" required name="name"></p>
<p><input class="w3-input w3-padding-16 w3-border" type="email" placeholder="Email" required name="email"></p>
<p><input class="w3-input w3-padding-16 w3-border" type="text" placeholder="Subject" required name="_subject"></p>
<p><input class="w3-input w3-padding-16 w3-border" type="text" placeholder="Message" required name="message"></p>
<p><button class="w3-button w3-black" type="submit">SEND MESSAGE</button></p>
</form>
</div>
</div>
<!-- End page content -->
</div>
<script>
// Tabbed Menu
</script>
</body>
</html>