Skip to content

Commit 07c4ed8

Browse files
committed
Create biog-download.html
1 parent 8b97ff5 commit 07c4ed8

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Formatting a biography</title>
7+
<style>
8+
body {
9+
background-color: #fff;
10+
color: #333;
11+
font-family: Arial, Helvetica, sans-serif;
12+
padding: 1em;
13+
margin: 0;
14+
}
15+
16+
h1 {
17+
color: #375e97;
18+
font-size: 2em;
19+
font-family: Georgia, 'Times New Roman', Times, serif;
20+
border-bottom: 1px solid #375e97;
21+
}
22+
23+
h2 {
24+
font-size: 1.5em;
25+
}
26+
27+
.job-title {
28+
color: #999999;
29+
font-weight: bold;
30+
}
31+
32+
a:link,
33+
a:visited {
34+
color: #fb6542;
35+
}
36+
37+
a:hover {
38+
text-decoration: none;
39+
}
40+
</style>
41+
</head>
42+
43+
<body>
44+
45+
<h1>Jane Doe</h1>
46+
<div class="job-title">Web Developer</div>
47+
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
48+
49+
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.
50+
</p>
51+
52+
<h2>Contact information</h2>
53+
<ul>
54+
<li>Email:
55+
<a href="mailto:jane@example.com">jane@example.com</a>
56+
</li>
57+
<li>Web:
58+
<a href="http://example.com">http://example.com</a>
59+
</li>
60+
<li>Tel: 123 45678</li>
61+
</ul>
62+
63+
</body>
64+
65+
</html>

0 commit comments

Comments
 (0)