forked from Esztergb/doggy-gps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (85 loc) · 3.71 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Doggy GPS Homepage</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="./assets/css/start.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="nav" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo"><i class="logo material-icons">pets pets pets</i></a>
<!-- <ul class="right hide-on-med-and-down">
<li><a href="#">Navbar Link</a></li>
</ul> -->
<!-- <ul id="nav-mobile" class="sidenav">
<li><a href="#">Navbar Link</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a> -->
</div>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br><br>
<h1 class="header center orange-text">Doggy GPS</h1>
<div class="row center">
<h5 class="header col s12 light">Find your perfect dog at nearby shelters</h5>
</div>
<div class="row center">
<a href="./search.html" id="download-button" class="btn-large waves-effect waves-light orange">FIND YOUR DOG</a>
</div>
<br><br>
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center"><i class="icon material-icons">pets</i></h2>
<h5 class="center">Info on dog breeds</h5>
<!-- <p class="light">some marketing text</p> -->
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center"><i class="icon material-icons">search</i></h2>
<h5 class="center">Find dogs nearby</h5>
<!-- <p class="light">some marketing text</p> -->
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center"><i class="icon material-icons">home</i></h2>
<h5 class="center">Give a home to a dog</h5>
<!-- <p class="light">some marketing text here</p> -->
</div>
</div>
</div>
</div>
<br><br>
</div>
<footer class="page-footer brown lighten-2 center">
<div class="container ">
<div class="row">
<div class="col s12">
<h5 class="white-text">Company Bio</h5>
<p class="grey-text text-lighten-4">Having some ruff days? Looking for a pup to become a part of your furever family? If so, have no fear, Doggy GPS is here! With Doggy GPS, you can search a specific dog breed and discover its attributes rated on a scale from 1-5. Based off that search, you can find available dogs to adopt, contact information, give a pet its new furever home. Team Pewter City is a group of dog lovers who wanted to make it a bit easier to find dogs and available dogs to adopt all in one spot.</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Made by <a class="orange-text text-lighten-3" href="">Team Pewter City</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>