-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 2.22 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
<html>
<head>
<title>Weather & Food</title>
<link type="text/css" rel="stylesheet" href="resources/css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src='resources/js/index.js'></script>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="hero">
<div class="btn-box">
<i class="fas fa-sun-cloud"></i>
<button id="weather"><i class="fas fa-cloud-sun"></i> Weather</button>
<button id = "places"><i class="fas fa-utensils"></i> Recipes</button>
</div>
<div class="container">
<div class="content-left">
<div id="City">
<h2> What's the Weather Like? </h2>
<h5 id="info-title">Enter City Name</h5>
<div class="row form-group form-inline">
<input type="text" name="city" id="city" class="form-control", placeholder="City Name">
<button id="search_city" class="btn btn-primary">Search City</button>
</div>
<div id="show"></div>
</div>
<div id="Recipe">
<h2> Want to Find a Recipe? </h2>
<h5 id="recipe-title">Search by Food Name</h5>
<div id="rec" class="row form-group form-inline">
<input type="text" name="recipes" id="recipes" class="form-control", placeholder="Search for a recipe">
<button id="search_recipe" class="btn btn-primary">Search Recipe</button>
</div>
<div id="show_recipe"></div>
<a href="" id="source_link"></a>
</div>
</div>
<div class="content-right">
<div id="icons">
<img id="icons" src="images/icons.jpg">
</div>
<div id="food">
<img id="food" src="images/food.jpg">
</div>
</div>
</div>
</div>
</body>
</html>