This repository was archived by the owner on Aug 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathweek3AssignmentAnswerCheat.html
More file actions
47 lines (46 loc) · 2.21 KB
/
week3AssignmentAnswerCheat.html
File metadata and controls
47 lines (46 loc) · 2.21 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Benjamin Dean's Bio Page</title>
<style type="text/css" rel="stylesheet">
body {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+50,ededed+51,ffffff+100;White+Gloss+%232 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
#left {
width: 60%;
height: auto;
border: 2px #666 dashed;
padding: 1%;
display: inline-block;
}
</style>
</head>
<body>
<h1>Benjamin Dean</h1>
<div id="bioContainer" style="clear: both; width: 90%; padding-left: 2%;">
<div id="left">
<p>
<strong>Benjamin Dean</strong> is a passionate web developer focused upon helping other developers be successful in their professional lives. He has been programming for nearly 20 years and really enjoys being involved in Developer Relations.
</p>
<h2>In His Freetime...</h2>
<ul>
<li>Nature watching with his family</li>
<li>Creates visual art</li>
<li>Plays guitar, bass, drums, and keyboards</li>
<li>Hiking and bicycling</li>
<li>Amateur Mycology</li>
<li>And of course...programming & technology!</li>
</ul>
</div><!-- /#left -->
<img src="http://www.exacttarget.com/blog/wp-content/uploads/2014/06/dean__benjamin_w640.png" style="width: 30%; height: auto; max-width: 40%; float: right; display: inline-block" alt="A picture of Benjamin" />
<div>
View Benjamin's <a href="https://github.com/bdeanindy" title="Benjamin's Github Profile">Github Profile</a>
</div>
</div><!-- /#bioContainer -->
</body>
</html>