-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (86 loc) · 3.64 KB
/
Copy pathindex.html
File metadata and controls
100 lines (86 loc) · 3.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="JS.js"></script>
<title>Home Page</title>
</head>
<body class="homepage">
<main>
<div class="pageTop">
<nav class="topNav">
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="nav-links">
<li class="topNavList"><a class="active" href="index.html" >Home</a></li>
<li class="topNavList"><a href="index2.html">Dairy Free</a></li>
<li class="topNavList"><a href="index3.html">Gluten Free</a></li>
<li class="topNavList"><a href="index4.html">Nut Free</a></li>
<li class="topNavList"><a href="index5.html">Vegan</a></li>
<li class="topNavList"><a href="index6.html">Index</a></li>
</ul>
</nav>
<h1>DELICIOUS DESSERTS*</h1>
<h2>*without the worry</h2>
</div>
<h2 class="pageTopic">featured recipes</h2>
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="pics\avo&strawb.jpg" alt="Avocado" style="width:100%;">
</div>
<div class="item">
<img src="pics\blue&coco.jpg" alt="Blue and Cocoa" style="width:100%;">
</div>
<div class="item">
<img src="pics\choc&orange.jpg" alt="Chocholate " style="width:100%;">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</main>
<footer>
<a href="https://www.tesco.com/" class="footer__links">
<span class="material-icons">storefront</span>
</a>
<a href="index7.html" class="footer__links">
<span class="material-icons">email</span>
</a>
<a href="https://www.instagram.com/" class="footer__links">
<span class="fa fa-instagram" aria-hidden="true"></span>
</a>
<a href="https://www.facebook.com/" class="footer__links">
<span class="fa fa-facebook-square" aria-hidden="true"></span>
</a>
<a href="https://www.pinterest.co.uk/pinchofyum/baking/" class="footer__links">
<span class="fa fa-pinterest-square" aria-hidden="true"></span>
</a>
</footer>
</body>
</html>