Skip to content

Commit 2a9a9ea

Browse files
author
PB Sweep
committed
Complete upto fundamentals: part 1
1 parent e23f311 commit 2a9a9ea

File tree

4 files changed

+555
-27
lines changed

4 files changed

+555
-27
lines changed
Lines changed: 31 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
<!DOCTYPE html>
22
<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-
</body>
29-
</html>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
8+
<title>JavaScript Fundamentals – Part 1</title>
9+
<style>
10+
body {
11+
height: 100vh;
12+
display: flex;
13+
align-items: center;
14+
background: linear-gradient(to top left, #28b487, #7dd56f);
15+
}
16+
17+
h1 {
18+
font-family: sans-serif;
19+
font-size: 50px;
20+
line-height: 1.3;
21+
width: 100%;
22+
padding: 30px;
23+
text-align: center;
24+
color: white;
25+
}
26+
</style>
27+
</head>
28+
29+
<body>
30+
<h1>JavaScript Fundamentals – Part 1</h1>
31+
</body>
32+
33+
</html>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
8+
<title>JavaScript Fundamentals – Part 1</title>
9+
<style>
10+
body {
11+
height: 100vh;
12+
display: flex;
13+
align-items: center;
14+
background: linear-gradient(to top left, #28b487, #7dd56f);
15+
}
16+
17+
h1 {
18+
font-family: sans-serif;
19+
font-size: 50px;
20+
line-height: 1.3;
21+
width: 100%;
22+
padding: 30px;
23+
text-align: center;
24+
color: white;
25+
}
26+
</style>
27+
28+
</head>
29+
30+
<body>
31+
<h1>JavaScript Fundamentals – Part 1</h1>
32+
<script src="script.js"></script>
33+
</body>
34+
35+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
let js = "amazing";
2+
// if (js === "amazing") alert('Javascript is amazing!');
3+
console.log(40 + 8 + 22 - 8);

0 commit comments

Comments
 (0)