-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
68 lines (64 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>What's for Dinner Intro Page</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"/>
<link href="https://fonts.googleapis.com/css2?family=Mali:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./Assets/CSS/intro-style.css">
</head>
<body>
<!-- Jumbotron -->
<div class="jumbotron jumbotron-fluid vertical-center">
<div class="container">
<h1 class="display-4">What's for Dinner?</h1>
<!-- <hr class="my-4"> -->
<p>It's the age-old question. Search to find out.</p>
<!-- Form for search field and button -->
<form class="form-check form-check-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search for Food" aria-label="Search" id="search-input">
<button class="btn my-2 my-sm-0" type="submit" id="search-button"><i class="fas fa-search"></i></button>
</form>
<!-- Form for radio buttons -->
<form class="radiobuttons">
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1" checked="checked">
<label class="custom-control-label" for="inlineRadio1">Eat in</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<label class="custom-control-label" for="inlineRadio2">Eat out</label>
</div>
</form>
</div>
</div>
<!-- Random Recipe Card -->
<div class="card" style="width: 25rem;">
<div class="cropped">
<img src="./Assets/images/cooking-img.jpg" alt="Card image cap">
</div>
<div class="card-body">
<h5 class="card-title">Random Recipe</h5>
<p class="card-text">Feeling spontaneous? Click the button below to go to a recipe chosen at random.</p>
<a href="#" class="btn btn-primary" id="random-recipe">Let's Cook!</a>
</div>
</div>
<!-- Random Restaurant Card -->
<div class="card" style="width: 25rem;">
<div class="cropped">
<img src="./Assets/images/restaurant-image.jpg" alt="Card image cap">
</div>
<div class="card-body">
<h5 class="card-title">Random Restaurant</h5>
<p class="card-text">Feeling spontaneous? Click the button below to go to a restaurant chosen at random.</p>
<a href="#" class="btn btn-primary" id="random-restaurant">Serve Me!</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./Assets/javascript/script.js" async defer></script>
</body>
</html>