Skip to content

Commit b21fb86

Browse files
committed
first commit
0 parents commit b21fb86

File tree

11 files changed

+247
-0
lines changed

11 files changed

+247
-0
lines changed

01_lesson/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>My First Web Page</title>
7+
<style>
8+
html {
9+
font-size: 22px;
10+
}
11+
12+
body {
13+
background-color: #333;
14+
color: whitesmoke;
15+
}
16+
</style>
17+
</head>
18+
19+
<body>
20+
<h1>Hello World!</h1>
21+
<p>This is my first web page.</p>
22+
</body>
23+
24+
</html>

02_lesson/html5.png

648 Bytes
Loading

02_lesson/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="author" content="Dave Gray">
7+
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
8+
<title>My First Web Page</title>
9+
<link rel="icon" href="html5.png" type="image/x-icon">
10+
<link rel="stylesheet" href="main.css" type="text/css">
11+
</head>
12+
13+
<body>
14+
<h1>Hello World!</h1>
15+
<p>This is my first web page.</p>
16+
</body>
17+
18+
</html>

02_lesson/main.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
html {
2+
font-size: 22px;
3+
}
4+
5+
body {
6+
background-color: #333;
7+
color: whitesmoke;
8+
}

03_lesson/html5.png

648 Bytes
Loading

03_lesson/index.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="author" content="Dave Gray">
7+
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
8+
<title>My First Web Page</title>
9+
<link rel="icon" href="html5.png" type="image/x-icon">
10+
<link rel="stylesheet" href="main.css" type="text/css">
11+
</head>
12+
13+
<body>
14+
<h1>Hello World!</h1>
15+
16+
<hr>
17+
18+
<h2>I'm Ready to Learn HTML</h2>
19+
<p>This is my first web page.</p>
20+
21+
<h3>My Daily Schedule</h3>
22+
<p>Let me tell you how:
23+
<br>&nbsp;&nbsp;&nbsp;...I learn more about web dev.
24+
<br>&nbsp;&nbsp;&nbsp;...I plan out my schedule.
25+
<br>&nbsp;&nbsp;&nbsp;...I use resources from <abbr title="Mozilla Developer Network">MDN</abbr>.
26+
</p>
27+
28+
<hr>
29+
30+
<h2>I Am Also Planning a Vacation</h2>
31+
<p>I've been working hard and <em>really need a getaway</em>.</p>
32+
<p>I live in <abbr title="Kansas">KS</abbr> so I want visit a beach.</p>
33+
34+
<h3>Place I'd Like to Visit</h3>
35+
<p>I've heard good things about the Caribbean.</p>
36+
<p>I've heard good things about going here:</p>
37+
<address>
38+
Margaritaville Island Reserve Riviera Cancún<br>
39+
Bahia Petempich Puerto Morelos, Mexico<br>
40+
Colonia Morelos, México 77580
41+
</address>
42+
43+
<!-- TODO: Add more places -->
44+
<h3>Place I Want to Avoid</h3>
45+
<p>Anywhere cold. <strong>No way!</strong></p>
46+
47+
<hr>
48+
&lt;&lt;&lt; &copy; Dave Gray &gt;&gt;&gt;
49+
</body>
50+
51+
</html>

03_lesson/main.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
html {
2+
font-size: 22px;
3+
}
4+
5+
body {
6+
background-color: #333;
7+
color: whitesmoke;
8+
}

04_lesson/html5.png

648 Bytes
Loading

04_lesson/index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="author" content="Dave Gray">
7+
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
8+
<title>My First Web Page</title>
9+
<link rel="icon" href="html5.png" type="image/x-icon">
10+
<link rel="stylesheet" href="main.css" type="text/css">
11+
</head>
12+
13+
<body>
14+
<h1>Hello World!</h1>
15+
16+
<hr>
17+
18+
<h2>I'm Ready to Learn HTML</h2>
19+
<p>This is my first web page.</p>
20+
21+
<h3>My Daily Schedule</h3>
22+
<p>Let me tell you how:</p>
23+
<ol>
24+
<li>...I learn more about web dev.</li>
25+
<li>...I plan out my schedule.</li>
26+
<li>...I use resources from <abbr title="Mozilla Developer Network">MDN</abbr>.</li>
27+
</ol>
28+
29+
<hr>
30+
31+
<h2>I Am Also Planning a Vacation</h2>
32+
<p>I've been working hard and <em>really need a getaway</em>.</p>
33+
<p>I live in <abbr title="Kansas">KS</abbr> so I want visit a beach.</p>
34+
35+
<h3>Place I'd Like to Visit</h3>
36+
<ul>
37+
<li>
38+
<p>I've heard good things about the Caribbean.</p>
39+
</li>
40+
<li>
41+
<p>I've heard good things about going here:</p>
42+
<address>
43+
Margaritaville Island Reserve Riviera Cancún<br>
44+
Bahia Petempich Puerto Morelos, Mexico<br>
45+
Colonia Morelos, México 77580
46+
</address>
47+
</li>
48+
</ul>
49+
<!-- TODO: Add more places -->
50+
<h3>Places I Want to Avoid</h3>
51+
<dl>
52+
<dt>North Pole</dt>
53+
<dd>I hear this is <strong>cold</strong>!</dd>
54+
55+
<dt>South Pole</dt>
56+
<dd>This is also cold.</dd>
57+
58+
<dt>Mountain Tops</dt>
59+
<dd>These are also cold.</dd>
60+
</dl>
61+
62+
<hr>
63+
&lt;&lt;&lt; &copy; Dave Gray &gt;&gt;&gt;
64+
</body>
65+
66+
</html>

04_lesson/main.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
html {
2+
font-size: 22px;
3+
}
4+
5+
body {
6+
background-color: #333;
7+
color: whitesmoke;
8+
}

0 commit comments

Comments
 (0)