Skip to content

Commit

Permalink
Starter code for HTML chapter and new gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
gildedgardenia committed Sep 26, 2023
1 parent b0535f1 commit 1e86510
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
16 changes: 16 additions & 0 deletions html/exercises/index.html
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>

0 comments on commit 1e86510

Please sign in to comment.