-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (87 loc) · 3.38 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
101
102
103
104
105
<!doctype HTML>
<html>
<head>
<meta charset="utf-8">
<meta
name="description"
content="Stuck at home? Generate a route that starts and begins at home, with nearby parks and other places of interest on the way."
>
<meta
name="keywords"
content="runroute, jogging-route, running-route, places-to-run"
>
<meta
name="author"
content="Anser Ghazi"
>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
>
<link
rel="stylesheet"
href="content/css/style.css"
>
<link
href="https://fonts.googleapis.com/css2?family=Ruda:wght@900&display=swap"
rel="stylesheet"
>
<link
href="https://fonts.googleapis.com/css2?family=Oswald&display=swap"
rel="stylesheet"
>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat+Subrayada:wght@700&display=swap"
rel="stylesheet"
>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap"
rel="stylesheet"
>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="https://kit.fontawesome.com/21a0f11fac.js" crossorigin="anonymous"></script>
<title>RunRoute | Your at-home running route generator</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8S1DB5X3B7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8S1DB5X3B7');
</script>
</head>
<body>
<div class="header">
<h1><a class="title" href=".">RunRoute</a></h1>
<h1><a class="small_title" href=".">r</a></h1>
<nav>
<ul>
<li><a [title]="About RunRoute" href="views/html/about.html">About</a></li>
<li><a [title]="Contact Us" href="views/html/contact.html">Contact</a></li>
<li><a [title]="Route Generator" href="views/html/application.html">Application</a></li>
</ul>
</nav>
</div>
<div class="mobile_header">
</div>
<div class="content">
<div class="homepage">
<img alt="(Graphic) A woman running in a park." src="content/images/staying_fit.png">
</div>
<div class="sidebar">
<p class="homepage_header">Running at home?</p>
<p class="homepage_text">Plan a route with nearby places of interest <i>to</i> and <i>from</i> your doorstep. </p>
<img alt="(Video/GIF) The process of creating a route on the Runroute application." id="runinstructions" src="content/images/howtouse.gif">
<button class="run_button" style="vertical-align:middle"><a href="views/html/application.html">Let's run.</a></button>
</div>
</div>
<div class="footer">
<div class="social_media">
<a href="https://github.com/anserghazi" target="_blank" class="fa fa-github"></a>
<a href="https://www.linkedin.com/in/anser-ghazi-aa47091ba/" target="_blank" class="fa fa-linkedin"></a>
<a href="https://twitter.com/anser_ghazi?lang=en" target="_blank" class="fa fa-twitter"></a>
<a href="https://www.instagram.com/anserghazi/?hl=en" target="_blank" class="fa fa-instagram"></a>
</div>
</div>
<body>
</html>