Skip to content

Fixed typos #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions homework-excuse-generator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<!--This is a comment. Comments never show up on a webpage. Instead they stay in the code for you and others to read. Programmers leave comments to help other people understand, use, and remix their code.-->

<!--This is a comment. Here are some meta tages that tell us information about the page.-->
<!--This is a comment. Here are some meta tags that tell us information about the page.-->

<meta name="author" content="Mozilla Learning Networks">
<meta name="title" content="Homework Excuse Machine">
Expand All @@ -16,19 +16,19 @@

<title>Homework Excuse Machine</title>

<!--This is a comment. Below this comment you can see a link to an external stylesheet. This is a document that styles our webpage with different colors, fonts, and layouts. Instead of putting all the information right here in style tags, we're linking to a separate document to keep this page smaller and its code clearner. The style link is followed by web font links that let us use cool type-faces on our page.-->
<!--This is a comment. Below this comment you can see a link to an external stylesheet. This is a document that styles our webpage with different colors, fonts, and layouts. Instead of putting all the information right here in style tags, we're linking to a separate document to keep this page smaller and its code clearer. The style link is followed by web font links that let us use cool type-faces on our page.-->

<link rel='stylesheet' href='style.css' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC:700' rel='stylesheet' type='text/css'>

<!--This is a comment. Below this comment you can see a script sourced from an external document written in JavaScript. This is a document that holds a script- or program - for our webpage. Instead of putting all its code here between script tags, we're linking to a seperate document to keep this page smaller and its code cleaner.-->
<!--This is a comment. Below this comment you can see a script sourced from an external document written in JavaScript. This is a document that holds a script - or program - for our webpage. Instead of putting all its code here between script tags, we're linking to a seperate document to keep this page smaller and its code cleaner.-->

<script src="excuses.js" type="text/javascript"></script>

<!--This is a comment. The background image of crumpled grpah paper is credited to photosteve101 at https://www.flickr.com/photos/42931449@N07/5263541791/sizes/o/.-->
<!--This is a comment. The background image of crumpled graph paper is credited to photosteve101 at https://www.flickr.com/photos/42931449@N07/5263541791/sizes/o/.-->

<!--This is a comment. We're about to leave the head of the webpage that hold mostly invisible information about it. The next section is the body where we put the words, pictures, and other media that shows up in the browser on the computer.-->
<!--This is a comment. We're about to leave the head of the webpage that holds mostly invisible information about it. The next section is the body where we put the words, pictures, and other media that show up in the browser on the computer.-->

</head>

Expand Down