We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c859e6 commit ed56f58Copy full SHA for ed56f58
index.html
@@ -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