8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 96c0596Copy full SHA for 96c0596
JS-C1/01-Fundamentals-Part-1/final/index.html
@@ -0,0 +1,31 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge" />
7
+ <title>JavaScript Fundamentals – Part 1</title>
8
+ <style>
9
+ body {
10
+ height: 100vh;
11
+ display: flex;
12
+ align-items: center;
13
+ background: linear-gradient(to top left, #28b487, #7dd56f);
14
+ }
15
+ h1 {
16
+ font-family: sans-serif;
17
+ font-size: 50px;
18
+ line-height: 1.3;
19
+ width: 100%;
20
+ padding: 30px;
21
+ text-align: center;
22
+ color: white;
23
24
+ </style>
25
+ </head>
26
+ <body>
27
+ <h1>JavaScript Fundamentals – Part 1</h1>
28
+
29
+ <script src="script.js"></script>
30
+ </body>
31
+</html>
0 commit comments