-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 2.19 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">
<title>Thinkful Demo</title>
<meta name="description" content="Thinkful Demo for progress">
<meta name="author" content="SitePoint">
</head>
<body>
<main>
<section>
<h1>Contact Info</h1>
<p>Name: Sally</p>
<p>E-mail : <a href="mailto:[email protected]">sally[at]example.com</a> </p>
<p>Phone: +11 1111111111 </p>
<img src="http://ia.media-imdb.com/images/M/MV5BMTY5NzE3NzU3MF5BMl5BanBnXkFtZTgwMjg0NTQ5MDE@._V1_UX214_CR0,0,214,317_AL_.jpg" alt="Sally_Portrait">
</section>
<section>
<h1>Education</h1>
<ul>
<li>Stanford University</li>
<li>University Augsburg</li>
</ul>
</section>
<section>
<h1>Jobs</h1>
<table style="width:30%"">
<tr>
<th>Company</th>
<th>Job Title</th>
<th>from - to</th>
<th>Description</th>
</tr>
<tr>
<td>Kamasutra GmbH</td>
<td>Project Manager</td>
<td>2009-2016</td>
<td>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</td>
</tr>
<tr>
<td>Moogle</td>
<td>Lead Engineer</td>
<td>2001-2008</td>
<td>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</td>
</tr>
</table>
</section>
</main>
</body>
<address>
You can contact author at <a href="http://www.somedomain.com/contact">www.somedomain.com</a>.<br>
If you see any bugs, please <a href="mailto:[email protected]">contact webmaster</a>.<br>
You may also want to visit us:<br>
Mozilla Foundation<br>
1981 Landings Drive<br>
Building K<br>
Mountain View, CA 94043-0801<br>
USA
</address>
</html>