-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroNote.html
More file actions
45 lines (36 loc) · 867 Bytes
/
introNote.html
File metadata and controls
45 lines (36 loc) · 867 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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<!--void element -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Notes</title>
</head>
<body>
<!-- <> open tab </>close tab
ex <h1> </h1> -->
<!--inline elements -->
<!--<i> </i> >-->
<!--<em> </em> >-->
<!-- <b> </b>-->
<!-- <strong> </strong> -->
<!-- Block scope element takse up the whole line -->
<!-- <div> </div>
<p> </p>
<h1> </h1>
<nav> </nav>
-->
<h6><p>Id really like to take notes</p></h6>
<h5><p>in</p></h5>
<h4><p>all</p></h4>
<h3><p>kinds</p></h3>
<h2><p>of</p></h2>
<h1><p>size</p></h1>
<i>Hello there</i> <br>
<h3><em>Ah General Kanobi </em></h3>
<b> Aniken: I will bring peace and justice to my new empire <i><h6> *yellow eyes filled with anger*</h6></i></b>
<img src="js/My_newEmpire.jpg">
<p><strong> Kenobi: Your new empire?!</strong></p>
<script>
</script>
</body>
</html>