-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (48 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beginner level html</title>
<style> body{background: rgb(19, 43, 78);}</style>
</head>
<body>
<table cellspacing="20">
<tr>
<td> <img src="image\wanderdragon.jpg" alt="yes" width="400" height="300"></td>
<td> <h1>Louis Du Toit</h1>
<p><em>Founder of <a href="Randomurl"> PheonixLair.Inc</a></em></p>
<p>Lorem ipsum dolor sit amet.</p></td>
</tr>
</table>
<hr size="3" color="bisque"/>
<h3>Books And Teaching</h3>
<table>
<Ul>
<li>The complete IOs Bootcamp</li>
<li>The complete weddev</li>
</Ul>
<a href="C:\Users\dutoi\OneDrive\Desktop\Udemy course\WebDev\hobbies.html">Hobbies</a>
<br/>
<a href="PersonalInfo.html">Click Here if you want to contact me</a>
</table>
<table width="300" border="1">
<thead>
<tr>
<th colspan="2"><h3>Skills</h3></th>
</tr>
</thead>
<tbody>
<tr>
<td width="150">HTML</td>
<td width="150">⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td width="150">CSS</td>
<td width="150">⭐⭐⭐</td>
</tr>
</tbody>
</table>
</body>
<a href="Form.html">For Forms</a>
</html>