-
Notifications
You must be signed in to change notification settings - Fork 0
/
petprofile.html
86 lines (68 loc) · 2.05 KB
/
petprofile.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html class="no-js" lang="en">
<!-- nav -->
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="index.html">Home</a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#">Menu</a></li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class="active"><a href="../mypets.html">My Pets</a></li>
<li class="has-dropdown">
<a href="#">View Lost Animals</a>
<ul class="dropdown">
<li><a href="dogs.html">Dogs</a></li>
<li><a href="cats.html">Cats</a></li>
<li><a href="birds.html">Birds</a></li>
<li><a href="other.html">Other</a></li>
</ul>
</li>
</ul>
<!-- Left Nav Section -->
<ul class="left">
<li><a href="#">Login!</a></li>
</ul>
</section>
</nav>
<!-- end nav -->
<head>
<!-- Magnific Popup core CSS file -->
<link rel="stylesheet" href="magnific-popup/magnific-popup.css">
<!-- end popup -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Homeward Bound | Pet Profile
</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/my.css" />
<body class="bodybeige">
<div class="large-offset-2 header">
<img src="images/oso.jpg" class="animalImage" width="300px" height="300px">
<div class="bodywhite profileInfo">
<h1>
Oso's Profile
</h1>
<div>
<h3>Cat | Tuxedo</h3>
<ul>
<li>Black & White</li>
<li>Aggressive</li>
</ul>
</div>
</div>
</div>
</body>
</head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/magnificPopup.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script src="js/my.js"></script>
</html>