-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-prestructure.html
More file actions
73 lines (55 loc) · 2.24 KB
/
bootstrap-prestructure.html
File metadata and controls
73 lines (55 loc) · 2.24 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
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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="portfolio.css" rel="stylesheet">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta charset="utf-8">
</head>
<body>
<div class="container">
<nav>
<a href="http://fduknights.com/roster.aspx?rp_id=2156">FDU</a> |
<a href="http://liu.com">LIU</a> | <a href="http://udacity.com">UDACITY</a>
</nav>
<div class="row">
<div class="left col-md-2">
<img alt="tag" class="img-responsive" src="Images/bballheart.png">
</div>
<div class="right col-md-10 text-right text-uppercase">
<h1>Danielle Pankey</h1>
<h3>Front-End Web Developer</h3>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<h2>Achievements</h2>
</div>
</div>
<div class="row">
<section class="col-md-6 text-uppercase text-center">
<img alt="undergrad" class="img-responsive img-rounded displayed" src="Images/fdu.png" onmouseover="this.src='http://dailyorange.com/resize/300/wp-content/uploads/2012/11/WEB_11112012_S_WBBGamer_SamMaller.jpg'" onmouseout="this.src='Images/fdu.png'" width="300">
<h4>Fairleigh Dickinson University</h4>
<p><a href="http://fduknights.com/roster.aspx?rp_id=2156">B.S in Management</a>
</p>
</section>
<section class="col-md-6 text-uppercase text-center">
<img alt="graduate" class="img-responsive img-rounded displayed" src="Images/brooklyn.png" onmouseover="this.src='https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSaD1VsbfthvOVzEWaROTNjyRliFQqmoApgfKG-pS-wPNpYdMgj'" onmouseout="this.src='Images/brooklyn.png'"
width="300">
<h4>Long Island University</h4>
<p><a href="http://liu.edu">M.S in Computer Science</a>
</p>
</section>
</div>
<div class="row">
<section class="col-md-12 text-uppercase text-center">
<img alt="degree" class="img-responsive img-rounded displayed" src="Images/udacity.png"
width="300">
<h4>Udacity</h4>
<p><a href="http://Udacity.com">Front-End Web Developer Nano Degree</a>
</p>
</div>
</div>
</body>
</html>