-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro-to-html.html
More file actions
28 lines (28 loc) · 1.06 KB
/
intro-to-html.html
File metadata and controls
28 lines (28 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Intro to HTML</title>
<link rel="stylesheet" href=""> <!-- emmitt shortcut for CSS inclusion is 'link and then tab' -->
</head>
<body>
<h1>Yay! I'm in HTML! And am most important being 1st header declaration</h1> <!-- headers are relative to level of important -->
<p>this is a paragraph with breaks <br>
of various variousness <br>
and goes on and on...</p>
<hr>
<p>and here is another paragraph for illustrative purposes (but without the breaks)
and it too has words in it
and it looks beautiful</p>
<h2>I am 2nd in importance for header purposes</h2>
<ul>
<!-- shortcut li*(number of desired lines) and then 'tab' -->
<li>cats</li>
<li>sushi</li>
<li>chocolate</li>
<li>puppies</li>
<li>tacos</li>
</ul>
<script></script> <!-- and the script tag goes at the bottom of the body and in the body bc we want the page to load - and load quickly - and THEN add in the js -->
</body>
</html>