-
Notifications
You must be signed in to change notification settings - Fork 0
/
onmyradar.html
64 lines (64 loc) · 2.97 KB
/
onmyradar.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>SB | On My Radar</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Icon - Credit to Flaticon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/icon.png">
<!-- Icon - Credit to Flaticon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<style>p.indent{ padding-left: 31.8em }</style>
</head>
<body>
<!-- onmyradar Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<h2>This list never ends....</h2>
<table class="fl-table">
<thead>
<tr>
<th>To Do</th>
<th>In Progress</th>
<th>Finished!</th>
</tr>
</thead>
<tbody>
<tr>
<td>Book tickets for visa appointment</td>
<td>Send documents for rental lease</td>
<td>Obtain visa appointment</td>
</tr>
<tr>
<td><a class="button" href="packinglist.html">Pack Bags!</a></td>
<td>Complete resignation formalities at WRI</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Prepare visa interview packet</td>
<td></td>
</tr>
<tbody>
</table>
<div class="button-list" align="center">
<ul>
<li><a class="button button-home" href="index.html">Home</a></li>
</ul>
</div>
</body>
</html>