-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml
More file actions
41 lines (32 loc) · 752 Bytes
/
html
File metadata and controls
41 lines (32 loc) · 752 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
HTML = Hyper Text Markup Language
self-closing tags: img
<!DOCTYPE HTML>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"
<title>Introduction</title>
</head>
<body>
<ul>
<li style="background-color: red; font-family: arial; text-align: center">unordered list</li>
</ul>
<ol>
<li>ordered list</li>
</ol>
<strong>bold</strong>
<em>italics</em>
<span>certain part of website</span>
<div>separate part of website</div>
t
<table>
<thead>
<tr>
<th colspan="2">Info in Table</th>
<th>2nd Row of Info</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>