-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (63 loc) · 3.36 KB
/
index.html
File metadata and controls
65 lines (63 loc) · 3.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Magherita Pizza</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>The Magherita Pizza</h1>
<span>The most famous pizza in the whole entire world!</span>
</header>
<nav class="nav nav-fill">
<a class="nav-link" href="./pages/ingredients.html">Ingredients</a>
<a class="nav-link" href="./pages/buy.html">Buy</a>
<a class="nav-link" href="index.html">Home</a>
</nav>
<main class="container">
<div class="jumbotron" style="background-image: url('https://exclusive.multibriefs.com/images/exclusive/0609pizza.jpg'); background-repeat: no-repeat; background-size: cover; color:white;">
<h1 class="display-4">Hello, Pizza!</h1>
<p class="lead">A fresh pizza waiting for you.</p>
<hr class="my-4">
<p>Find them here</p>
<a class="btn btn-primary btn-lg" href="#" role="button">Find Pizza</a>
</div>
<div class="row">
<article class="card col-sm-4">
<div class="Magherita">
<img class="card-img-top" src="https://static.toiimg.com/photo/56868564.cms" alt="Classic Magherita">
<h3>Classic Margherita</h3>
</div>
<section>
<a class="btn btn-primary" href="https://www.pizzagogo.co.uk/" >Buy</a>
<a class="btn btn-secondary" href="./pages/ingredients.html">Recipe</a>
</section>
</article>
<article class="card col-sm-4">
<div class="Hawaiian">
<img class="card-img-top" src="https://www.cookingpanda.com/wp-content/uploads/2020/04/Hawaiian-Pizza.jpg" alt="Hawaiian-Pizza">
<h3>Hawaiian Pizza</h3>
</div>
<section>
<a class="btn btn-primary" href="https://www.pizzagogo.co.uk/">Buy</a>
<a class="btn btn-secondary" href="./pages/ingredients.html">Recipe</a>
</section>
</article>
<article class="card col-sm-4">
<div class="Pepperoni">
<img class="card-img-top " src="https://imagesvc.meredithcorp.io/v3/mm/image?url=https%3A%2F%2Fcdn-image.myrecipes.com%2Fsites%2Fdefault%2Ffiles%2Fstyles%2F4_3_horizontal_-_1200x900%2Fpublic%2Fimage%2Frecipes%2Fck%2Fgluten-free-cookbook%2Fpepperoni-pizza-ck-x.jpg%3Fitok%3DZtqfqaHn" alt="Pepperoni Pizza">
<h3>Pepperoni</h3>
</div>
<section>
<a class="btn btn-primary" href="https://www.pizzagogo.co.uk/">Buy</a>
<a class="btn btn-secondary" href="./pages/ingredients.html">Recipe</a>
</section>
</article>
</div>
</main>
</body>
</html>