-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fancylettuce Salad Bar</title>
</head>
<body>
<table>
<tr>
<td><img src="./assets/images/fancylettuce.jpg" alt="fancy lettuce"></td>
<td><h1>fancylettuce</h1>
<p><em>Head of Lettuce</em> at <em>Fancylettuce Salad Bar</em></p>
<p>Crisp, yet refreshing.</p>
</td>
</tr>
</table>
<hr>
<table>
<tr>
<td>
<h3>Education</h3>
<p>Stuff goes here... trust me. Not now... but soon... soon.</p>
<ul>
<li>Farm of Knowledge</li>
<li>Produce section at Walmart</li>
</ul>
</td>
</tr>
</table>
<hr>
<h3>Experience</h3>
<table cellspacing="10px">
<tr>
<td>0420-1420</td>
<td>Dank Dude Farms</td>
</tr>
<tr>
<td>1420-1969</td>
<td>Bubba Budz Greenhouse</td>
</tr>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10px">
<tr>
<td>Growing</td>
</tr>
<tr>
<td>Nourishing</td>
</tr>
<tr>
<td>Crunching when bitten into</td>
</tr>
<tr>
<td>Being green</td>
</tr>
<tr>
<td>Livening up a plate of food</td>
</tr>
</table>
<hr>
<a href="hobbies.html">My Hobbies</a>
<a href="contact.html">Contact Me</a>
<a href="./projects.html">HMTL Projects</a>
</body>
</html>