-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (76 loc) · 1.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Red Duck's Site</title>
</head>
<body>
<H1>Red Duck</H1>
<table cellspacing="20">
<tr>
<td><em>We're talking D&D</em></td>
</tr>
<tr>
<td>
<img src="images\RedDuckAdventures-sm.jpg" />
</td>
<td>
So I build models and want to do props for movies. Problem is, I need to eat food and pay bills so I don't get to do it.
Also, this is a test website, so nothing here is real. And, this is the update with GIT.
</td>
</tr>
</table>
<hr />
<p>
</p>
<h3>My model stuff</h3>
<ul>
<li> First Model </li>
<li> Second Model </li>
<li> Third Model </li>
</ul>
<h3>Work Exp</h3>
<table>
<thead>
<th>Dates</th>
<th>Work</th>
</thead>
<tbody>
<tr>
<td>early on</td>
<td>Worked for someone</td>
</tr>
<tr>
<td>Later On</td>
<td>Still working for someone</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<h3>Skilz</h3>
<table cellspacing="10">
<tr>
<td>c-sharp</td>
<td>⭐⭐⭐⭐⭐</td>
<td>c++</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>c-sharp 2</td>
<td>⭐⭐⭐</td>
<td>c++ 2</td>
<td>⭐⭐⭐</td>
</tr>
</table>
<hr />
<a href="hobbies.html">Hobbies</a>
<p>
Some helpers
</p>
<a download href="https://web.stanford.edu/group/csp/cs21/htmlcheatsheet.pdf">Download CheatSheet</a>
<p>
<a href="contact.html">Contact me</a>
</p>
</body>
</html>