Skip to content

Commit ed56f58

Browse files
author
Chris Sevilleja
authored
Create index.html
1 parent 1c859e6 commit ed56f58

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

Diff for: index.html

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Parcel Sandbox</title>
5+
<meta charset="UTF-8" />
6+
7+
<link
8+
href="https://fonts.googleapis.com/css?family=McLaren&display=swap"
9+
rel="stylesheet"
10+
/>
11+
</head>
12+
<body>
13+
<div class="hero">
14+
<h1>My First Serverless Function!</h1>
15+
</div>
16+
17+
<style>
18+
* {
19+
box-sizing: border-box;
20+
}
21+
22+
body {
23+
background: #fe6024;
24+
}
25+
26+
h1 {
27+
color: #febaa1;
28+
font-family: "McLaren";
29+
font-size: 80px;
30+
text-align: center;
31+
padding-right: 50px;
32+
padding-left: 50px;
33+
}
34+
35+
.hero {
36+
height: 100vh;
37+
width: 100vw;
38+
display: flex;
39+
align-items: center;
40+
justify-content: center;
41+
}
42+
</style>
43+
</body>
44+
</html>

0 commit comments

Comments
 (0)