forked from meganspaulding/GWG-animal-card-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtempCard.html
54 lines (49 loc) · 1.87 KB
/
tempCard.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
<!-- Use this file for a temporary card that we can use to reference when
building our jQuery, and so that we can use to design our CSS Styles -->
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body>
<div class="completedCard">
<!-- outer card box -->
<header class="cardHeader">
<h2>Name of Animal</h2> <!--to do: Add name -->
</header>
<!-- card image and text space -->
<div class="cardBody">
<picture>
<!-- box containing image of animal -->
<img class="cardImage" src="http://www.dimakroma.com/nophoto.gif" alt="animal-image" />
</picture>
<!-- box containing list of facts and animal description -->
<div class="cardAnimalText">
<ul class="animalFacts">
<!-- animal's list items go here -->
<li><span class="fact-label">Scientific Name: </span></li>
<li><span class="fact-label">Average Length: </span></li>
<li><span class="fact-label">Average Lifespan: </span></li>
</ul>
<!-- card text with Habitat and Animal Group -->
<div class="animalDetails">
<section>
<h3>Habitat</h3>
<p>Animal habitat placeholder here</p>
</section>
<section>
<h3>Animal Group</h3>
<p>Animal type placeholder here</p>
</section>
<section>
<!-- Animal's description goes here -->
<h3>Description</h3>
<p>Animal description placeholder</p>
</section>
</div>
</div>
</div>
</div>
</body>
</html>