Skip to content

Commit 1e86510

Browse files
Starter code for HTML chapter and new gitignore
1 parent b0535f1 commit 1e86510

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

html/exercises/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width">
6+
<title>HTML Exercise</title>
7+
<link href="style.css" rel="stylesheet" type="text/css" />
8+
<!-- DON'T TOUCH ANYTHING ABOVE THIS LINE -->
9+
</head>
10+
<body>
11+
<!-- h1 goes here -->
12+
<!-- ol goes here -->
13+
<!-- a goes here -->
14+
<!-- p goes here -->
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)