-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetail.html
34 lines (34 loc) · 1.54 KB
/
detail.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Appointment / Weather App</title>
<meta name="viewport" content="width=375">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/la-chata" type="text/css"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header class="returnMain">
<i id = "detail-return-main" class="fa fa-chevron-left"></i> Meet w/ Ash
</header>
<hr>
<div class="mainContainerDetail">
<div class="detailWhen"><span id="detailToday">Today at</span> <span id="detailTime">5:00pm</span></div>
<span id="detailWhere">TIY Durham</span><span><i class="fa fa-map-marker" id="mapIcon"></i></span>
<div id="detailMap">
<img src="assets/images/map.png" alt="map" width="300" />
</div>
<div class="detailWeather">
<section id="detailWeatherBox">Rainy, 55° F</section>
</div>
<div class="detailBar"></div>
</div>
<footer id="editAppointment" class="footerButton">Edit Appointment</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.5.1/lodash.js"></script>
</body>
</html>