-
Notifications
You must be signed in to change notification settings - Fork 1
/
semantic.html
90 lines (90 loc) · 2.07 KB
/
semantic.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
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Resume</title>
<link href="stylesheets/styles.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>FIRST NAME LAST NAME</h1>
<h2>JOB TITLE</h2>
</header>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">GOOGLE</a></li>
<li><a href="#">LINKEDIN</a></li>
</ul>
</nav>
<section>
<article>
<header>
<h1>Work Experience</h1>
</header>
<section>
Job #1
</section>
<section>
Job #2
</section>
<section>
Job #3
</section>
</article>
<article>
<header>
<h1>Hobbies (or Education)</h1>
</header>
<section>
Hobby #1
</section>
<section>
Hobby #2
</section>
<section>
Hobby #3
</section>
</article>
</section>
<aside>
<section>
<h1>Contact Me</h1>
<ul>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Google</a></li>
</ul>
</section>
<section>
<p>Availability</p>
<table>
<tr>
<th>M</th>
<th>T</th>
<th>W</th>
<th>Th</th>
<th>F</th>
<th>Sa</th>
<th>Su</th>
</tr>
<tr>
<td>9-5 PM</td>
<td>NONE</td>
<td>9-5 PM</td>
<td>NONE</td>
<td>9-5 PM</td>
<td>NONE</td>
<td>9-5 PM</td>
</tr>
</table>
</section>
<figure>
<img src="" alt="picture" />
<figcaption>Here is a picture of me!</figcaption>
</figure>
</aside>
<footer>Footer</footer>
</body>
</html>