Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions 01_lesson/index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<head>
<meta charset="UTF-8" />
<title>My First Web Page</title>
<style>
html {
font-size: 22px;
}
html {
font-size: 22px;
}

body {
background-color: #333;
color: whitesmoke;
}
body {
background-color: #333;
color: whitesmoke;
}
</style>
</head>
</head>

<body>
<body>
<h1>Hello World!</h1>
<p>This is my first web page.</p>
</body>

</html>
<p>my first commit</p>
</body>
</html>
26 changes: 14 additions & 12 deletions 02_lesson/index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Dave Gray" />
<meta
name="description"
content="This page contains all the things I am learning how to create as I learn HTML."
/>
<title>My First Web Page</title>
<link rel="icon" href="html5.png" type="image/x-icon">
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<link rel="icon" href="html5.png" type="image/x-icon" />
<link rel="stylesheet" href="main.css" type="text/css" />
</head>

<body>
<body>
<h1>Hello World!</h1>
<h1>Hello friend!</h1>
<p>This is my first web page.</p>
</body>

</html>
</body>
</html>