Skip to content
Open
Show file tree
Hide file tree
Changes from 8 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
13 changes: 13 additions & 0 deletions fall.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fall</title>
<meta name= "Zachary Eubanks" content="change to your name">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change this line as shown in the template

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Fall Here</h1>
<p>Can't wait till <a href="index.html">Spring</a>!</p>
</body>
</html>
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spring</title>
<meta name= "Zachary Eubanks" content="change to your name">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change this <meta> as shown in the template file

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Spring Here</h1>
<p>Can't wait till <a href="fall.html">Fall</a>!</p>
</body>
</html>
7 changes: 7 additions & 0 deletions simple.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Simplest, Valid HTML page</title>
</head>
<body>Hello Everybody</body>
</html>
2 changes: 1 addition & 1 deletion template.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>HTML Template change to your page title</title>
<meta name= "author" content="change to your name">
<meta name= "Zachary Eubanks" content="change to your name">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zach,
The <meta> element is can be used for different things, as described in its name attribute.

name = author means that this meta tag is used to represent the page's author - in its contents

So, leave name=author and change contents = to Your Name

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
Expand Down