-
Notifications
You must be signed in to change notification settings - Fork 1
/
plans.html
117 lines (107 loc) · 3.24 KB
/
plans.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
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Daily Plans</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
<!-- font for fly dragon -->
<link
href="https://fonts.googleapis.com/css2?family=Piedra&display=swap"
rel="stylesheet"
/>
<!-- font for trip planer -->
<link
href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap"
rel="stylesheet"
/>
<!-- font for my trip -->
<link
href="https://fonts.googleapis.com/css?family=Abril+Fatface|Kaushan+Script&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lobster+Two&family=Piedra&display=swap"
rel="stylesheet"
/>
<!-- font for question and day1 -->
<link
href="https://fonts.googleapis.com/css2?family=Arima+Madurai&display=swap"
rel="stylesheet"
/>
<!-- font for day1 content -->
<link
href="https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@300&family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- the navigation bar -->
<div id="navbar" class="ui inverted raised segment">
<h1 style="margin-bottom: 15px" class="titleHeader">Trip Planner</h1>
</div>
<!-- A card that hold each days activities -->
<div
class="ui centered raised fluid card"
id="daily-activity"
style="margin-top: 30px"
>
<div class="dayHeaderContent">
<img
class="right floated image weatherIcon"
src="https://openweathermap.org/img/wn/10d.png"
/>
<div class="dayHeader">Day <span>1</span> Activities</div>
</div>
<div class="activityContent">
<h5 class="ARheader">ACTIVITIES</h5>
<div class="ui feed">
<!-- <div class="event">
<div class="content">
<div class="summary"> -->
<p>List of actities here</p>
<!-- </div>
</div>
</div> -->
</div>
<div class="ui feed">
<h5 class="ARheader">REATAURANTS</h5>
<!-- <div class="event">
<div class="content">
<div class="summary"> -->
<p>List of reataurants here</p>
<!-- </div>
</div>
</div> -->
</div>
</div>
<div class="buttonContent">
<button
id="add-activity"
class="large ui button"
style="padding: 11px"
>
ADD ACTIVITY
</button>
<button
id="add-restaurant"
class="large ui button"
style="padding: 11px"
>
ADD RESTAURANT
</button>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
<script src="./js/activityCall.js"></script>
</body>
</html>