-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestskill.html
57 lines (51 loc) · 1.44 KB
/
testskill.html
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
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<h3>Advanced HTML Animals</h3>
<dl>
<dt>Llama</dt>
<dd>
Tall, woolly quadruped, pointy ears. Sometimes rideable, but grumpy and
spits a lot. Big fan of list items.
</dd>
<dt>Anaconda</dt>
<dd>
A very large constrictor snake; travels rapidly by way of anchors to
sneak up on his prey.
</dd>
<dt>Hippopotamus</dt>
<dd>His description is bottomless.</dd>
</dl>
<h3>Advanced text semantics</h3>
<p>Let's start with quote:</p>
<blockquote
cite="https://developer.mozilla.org/en-US/docs/Learn/Accessibility"
>
<p>
<abb>HTML</abb>, Hypertext Markup Language is by default accessible, if
used correctly.
</p>
</blockquote>
<p>
<abb>CSS</abb>
CSS can also be used to make web pages more, or less, accessible.
</p>
<p>
Chemical Formulae: H <sub>2</sub>O (Water), C <sub>2</sub>H <sub>6</sub>O
(Ethanol).
</p>
<p>
Dates:
<time datetime="2019-12-25">December 25 <sup>th</sup> 2019 </time>
(Christmas Day),
<time datetime="2019-11-2">November 2 <sup>nd</sup> 2019 </time> (Día de
los Muertos).
</p>
</body>
</html>