-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
163 lines (156 loc) · 3.29 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>[Your Name]'s Static Website</title>
</head>
<body>
<h1 class="title">[Your Name]</h1>
<div class="subtitle">
Hi, I'm a <b>[Year]</b> at UMass Amherst interested in web dev and cloud!
</div>
<div class="break"></div>
<div class="break"></div>
<div class="content">
<p>
This is my website that'll I created. 😎 The
website is statically written in HTML and hosted on an VPS instance
using Nginx which sets up the reverse proxy and serving.
</p>
<div>
I learnt how to build this at the UMass
<text class="acm">ACM</text>
and
<text class="dsc">DSC</text>
workshop on server hosting, where I learnt
<ol class="list">
<li class="list-item">Version Control with <b>git</b></li>
<li class="list-item">Code Collaboration on <b>GitHub</b></li>
<li class="list-item">Building <b>static webapps</b></li>
<li class="list-item">How to <b>SSH</b> into a server</li>
<li class="list-item">Working with <b>AWS EC2</b></li>
<li class="list-item">Using <b>Nginx</b></li>
</ol>
</div>
</div>
<div class="socials">
<h2>Find me at</h2>
<a href="https://github.com/{username}/" target="_blank">
<i
class="fa fa-github socials-item"
style="font-size: 3rem; color: #ad5c51"
></i>
</a>
<a href="https://linkedin.com/in/{username}" target="_blank">
<i
class="fa fa-linkedin socials-item"
style="font-size: 3rem; color: #0e76a8"
></i>
</a>
</div>
<footer>Made with ♥ by [Your Name]</footer>
</body>
<style>
html {
overflow-x: auto;
font-family: Helvetica, "Lucida Sans", "Lucida Sans Regular",
"Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
body {
color: black;
padding: 5rem;
padding-left: 8rem;
padding-right: 8rem;
animation: pulse 12s infinite alternate;
}
@keyframes pulse {
0% {
background-color: #fcd1d1;
}
33.3% {
background-color: #ebded4;
}
66.57% {
background-color: #d3e0dc;
}
100% {
background-color: #aee1e1;
}
}
h1 {
text-align: center;
font-size: 3.5rem;
}
h2 {
font-size: 2rem;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
.subtitle {
font-size: 2rem;
text-align: center;
font-family: monospace;
}
.content {
text-align: justify;
font-size: 1.3rem;
}
.list {
display: grid;
padding-left: 2rem;
}
.list-item {
padding-top: 1rem;
}
.socials {
text-align: center;
padding-top: 2rem;
}
.socials-item {
padding: 1rem;
}
.acm {
color: #881c1c;
}
.dsc {
color: #4285f5;
}
.break {
padding-top: 2rem;
}
footer {
text-align: center;
padding-top: 1rem;
}
/*iPads*/
@media (max-width: 1366px) {
body {
padding: 3rem;
}
}
/*Mobile Phones*/
@media (max-width: 480px) {
body {
padding: 1rem;
}
h1 {
font-size: 2.5rem;
}
.break {
padding-top: 1rem;
}
.subtitle {
font-size: 1.6rem;
}
}
</style>
</html>