forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starter code for HTML chapter and new gitignore
- Loading branch information
1 parent
b0535f1
commit 1e86510
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>HTML Exercise</title> | ||
<link href="style.css" rel="stylesheet" type="text/css" /> | ||
<!-- DON'T TOUCH ANYTHING ABOVE THIS LINE --> | ||
</head> | ||
<body> | ||
<!-- h1 goes here --> | ||
<!-- ol goes here --> | ||
<!-- a goes here --> | ||
<!-- p goes here --> | ||
</body> | ||
</html> |