-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dog generator</title>
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/9f91d488b5.js" crossorigin="anonymous"></script>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Roboto:wght@100;400;700&display=swap" rel="stylesheet">
<!-- External CSS -->
<link rel="stylesheet" href="./public/reset.css">
<link rel="stylesheet" href="./public/style.css">
</head>
<body>
<header class="primary-header container clearfix">
<h1 class="logo">Dog <br> Facts</h1>
<a href="https://github.com/boobeh123/Random-dog-generator" class="float-right"><i class="fa-brands fa-github fa-2xl"></i></a>
</header>
<div class="row-alt">
<section class="container hero lead">
<h2>Random Dog Generator</h2>
<p>Use the dropdown menu to select a breed that generates an image of that dog with randomly generated names & fun-facts</p>
<select>
<option value="" selected>Show more</option>
</select>
</section>
</div>
<div class="row">
<div class="grid">
<section class="onethird-column teaser">
<h2>Dog traits</h2>
<ul>
<li>Name: <span class="dog-name"></span></li>
<li>Gender: <span class="dog-gender"></span></li>
<li>Age: <span class="dog-age"></span></li>
<li>Hobbies: <p class="dog-hobby"></p></li>
<li>Doesn't like: <p class="dog-dislike"></p></li>
<li>Facts: <p class="dog-funfacts"></p></li>
</ul>
</section><!--
--><section class="twothird-column teaser">
<img src="http://placecorgi.com/350/350" class="dog-image" alt="dog-corgi-randomly-generated-from-placecorgi"/>
</section></div>
</div>
<footer class="container clearfix primary-footer">
<p>© Random Dog Generator</p>
<a href="https://github.com/boobeh123"><i class="fa-brands fa-github fa-2xl"></i></a>
<a href="https://twitter.com/boobeh123"><i class="fa-brands fa-twitter fa-2xl"></i></a>
</footer>
<script src="./public/main.js"></script>
</body>
</html>