-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_codebook.html
More file actions
51 lines (46 loc) · 1015 Bytes
/
html_codebook.html
File metadata and controls
51 lines (46 loc) · 1015 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
46
47
48
49
50
51
<!-- Meta Tags -->
<head>
<meta charset="utf-8">
<meta name="description", content="">
</head>
<!-- Headers stop at six -->
<h1>Header Level 1</h1>
<h6>Header Level 6</h6>
<br>
<!-- Text types -->
<em>Using "em" is preferred to italics ("i"when wanting to emphasize text.</em>
<br>
<strong>Similarly, it is better to use "strong" over bold ("b")</strong>
<br>
<a href="https://github.com/tomweinandy">Hyperlink</a>
<br>
<!--Objects-->
<br>
<hr>
<img src="https://media-exp1.licdn.com/dms/image/C5622AQF9K68WHoDLcw/feedshare-shrink_800/0/1633546779327?e=2147483647&
v=beta&t=Cw_hOT9myTLmdgLBuLTTOOQP5ZarVw0SxAtLZqm9uf0", alt="Thomas J. Weinandy Photo", width="100", height="100">
<br>
<!--Lists-->
<br>
Unordered list
<ul>
<li> List item
</ul>
Ordered list
<ol>
<li> List item
</ol>
<br>
<!--Tables-->
Table
<table>
<head>
<tr>
<th>header1</th>
<th>header2</th>
</tr>
</head>
<tr></tr>
<td>cell 1</td>
<td>cell 2</td>
</table>