-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 956 Bytes
/
index.html
File metadata and controls
35 lines (31 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Connecting HTML, CSS, and JS Demo</title>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<script defer src="src/index.js" type="text/javascript"></script>
</head>
<body>
<main>
<h1>🦀 Welcome to my Crab Fan Site 🦀</h1>
<p>Here is my website where I post interesting facts about crabs.</p>
<section>
<h2>I Don't Know What Crabs Look Like</h2>
<ol>
<li>sometimes red</li>
<li>Can be rly small or rly big</li>
<li>Claaaws 🎅🧑🎄</li>
<li>the Hard shell</li>
<li>krabby was based off this one</li>
</ol>
</section>
<section>
<button id="addCrabButton">Add Crab</button>
</section>
<section id="crabContainer">
</section>
</main>
</body>
</html>