-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstpage.html
65 lines (48 loc) · 1.58 KB
/
firstpage.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
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Kevin Truong's TTS WebPage</title>
</head>
<body>
<h1 style="font-size: 56px; color: red;">Hi, <a href="http://www.kevin-truong.com/" target="_blank">I'm Kevin.</a></h1>
<a href="https://github.com/truongmkevin" target="_blank"><img src="https://octodex.github.com/images/bear-cavalry.png" width="30%"></a>
<!-- How to use strong and emphasis -->
<p>Hellooooo<strong>ooooooo</strong>oooo<em>oooo</em>ooo.</p>
<br>
<div style="width: 100px; height: 55px; background: red; color: pink">My first div</div>
<div>My second div</div>
<!-- Span tags are in line and do not create new lines -->
<p> This will be <span style ="color: pink; background: black">my first span tag.</span></p>
<br> <!-- This is a new line tag -->
<ol>
<li>This is the first element</li>
<li>This is the second element in an ORDERED List</li>
<li>This is the third.</li>
</ol>
<ul>
<li>This is an UNORDERED List.</li>
<li>This is numbah 2.</li>
</ul>
<img src="http://www.cuteanimal.ninja/wp-content/uploads/2015/04/fluffy-cute-baby-penguins-ztdomidf.jpg" width ="25%" alt="Picture of adorable baby penguin.">
<br>
<img src="http://placekitten.com/g/252/317">
<img src="http://placehold.it/341x152">
<br>
<br>
<table border="2px" style="font-size: 22px">
<thead>
<tr>
<th colspan="2" style="font-size: 32px">This is the table header</th>
</tr>
</thead>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
</table>
</body>
</html>