Skip to content

Commit ed6695e

Browse files
initial
1 parent ac5980e commit ed6695e

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

01-Getting started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<title>First web page</title>
88
</head>
99
<body>
10-
10+
<h1>Hello World</h1>
1111
</body>
1212
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<h1>The first web page</h1>
9+
<h2>Second heading</h2>
10+
<h3>third heading</h3>
11+
<h4>fourth heading</h4>
12+
<h5>fifth heading</h5>
13+
<h6>sixth heading</h6>
14+
<h1>📘 The Code Magazine
15+
</h1>
16+
</body>
17+
</html>

starter/03-CSS-Fundamentals/index.html

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,10 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>The Basic Language of the Web: HTML</title>
6+
<link rel="stylesheet" href="./style.css" />
67
</head>
78

89
<body>
9-
<!--
10-
<h1>The Basic Language of the Web: HTML</h1>
11-
<h2>The Basic Language of the Web: HTML</h2>
12-
<h3>The Basic Language of the Web: HTML</h3>
13-
<h4>The Basic Language of the Web: HTML</h4>
14-
<h5>The Basic Language of the Web: HTML</h5>
15-
<h6>The Basic Language of the Web: HTML</h6>
16-
-->
17-
1810
<header>
1911
<h1>📘 The Code Magazine</h1>
2012

starter/03-CSS-Fundamentals/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
h3 {
2+
color: aqua;
3+
}
4+
body {
5+
background-color: antiquewhite;
6+
font-family: "Courier New", Courier, monospace;
7+
}

0 commit comments

Comments
 (0)