-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
133 lines (115 loc) · 2.9 KB
/
contact.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
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Illunis</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Esteban&display=swap");
@font-face {
font-family: Moontime;
src: url(./moontime.ttf);
}
body {
margin: 0;
padding: 0;
font-family: "Esteban", serif;
font-weight: 400;
background-color: #000000;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-height: 100vh;
}
.nav {
width: 100%;
padding: 20px 0;
background-color: #000000;
top: 0;
}
.nav a {
margin: 0 15px;
font-size: 1.2em;
}
a {
color: #ffffff;
text-decoration: none;
border-bottom: 1px solid #fff;
}
a:hover {
color: #ffde59;
border-bottom: 1px solid #ffde59;
}
.header {
margin: 3.5rem 0;
font-size: 2.8em;
color: #ffde59;
font-family: "Esteban", serif;
}
.image img {
margin: 0.5rem 0;
}
.volume {
font-size: 3em;
margin: 30px 0;
}
.poem-list {
font-size: 1.2em;
list-style: none;
padding: 0;
}
.poem-list li {
margin: 20px 0;
line-height: 16px;
}
hr {
margin: 3rem 0;
width: 40%;
}
.endtext {
margin-bottom: 1rem;
}
.title {
margin: 1rem 0;
font-size: 2.8em;
font-family: "Esteban", serif;
}
.space {
margin-bottom: 5rem;
}
.text {
width: 40%;
}
</style>
</head>
<body>
<div class="nav">
<a href="./index.html">home</a>
<a href="./about.html">about</a>
<a href="./contact.html">contact</a>
</div>
<div class="header">Contact</div>
<div class="text">
<p>
I'm Soumyadip, and besides programming I enjoy gaming, reading science
fiction, and composing & arranging music for guitar. I love Physics, and
I'm currently pursuing an integrated Bachelor's degree at IISER
Thiruvananthapuram.
</p>
<p>
I also have a blog named
<a href="https://offbeatsite.vercel.app/">Offbeat</a>.
</p>
<p>
If you have any feedback, feel free to shoot me an email at
<a href="mailto:[email protected]"
>.
</p>
</div>
<div class="space"></div>
</body>
</html>