blob: 97115b37679638afa0db5bf0def92eb7e2166b95 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Ben Burwell</title>
<script type="text/javascript" src="//use.typekit.net/xgd2xxh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
body {
font-family: 'myriad-pro';
font-size: 16px;
color: rgb(0, 0, 0);
background-color: rgb(250, 250, 250);
margin-left: auto;
margin-right: auto;
font-weight: normal;
}
.content {
width: 40em;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.title-block {
border-bottom: 2px solid rgb(0, 0, 0);
margin-left: auto;
margin-right: auto;
padding: 1em 1em 0.5em 1em;
margin: 0 1em 1em 1em;
}
h1 {
font-size: 2em;
font-weight: bold;
}
a {
color: rgb(68, 126, 173);
}
.caption {
font-family: 'minion-pro';
font-style: italic;
padding: 0.5em;
font-size: 1.2em;
}
</style>
</head>
<body>
<div class="content">
<div class="title-block">
<h1>Ben Burwell</h1>
<p class="caption">Designer & Developer</p>
</div>
<p>Please visit my website, <a href="http://www.benburwell.com/">www.benburwell.com</a>.</p>
</div>
</body>
</html>
|