-
Notifications
You must be signed in to change notification settings - Fork 0
/
index (3).html
100 lines (78 loc) · 3.22 KB
/
index (3).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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Sample.css">
<link rel="stylesheet" href="/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.1/css/all.min.css"
integrity="sha512-gMjQeDaELJ0ryCI+FtItusU9MkAifCZcGq789FrzkiM49D8lbDhoaUaIX4ASU187wofMNlgBJ4ckbrXM9sE6Pg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>London Bakery</title>
</head>
<body>
<nav class="nav background h-nav-resp">
<ul class="nav-list v-class-resp">
<div class="logo"><img src="./img/logo3.jpg" alt=""></div>
<li> <a href="#">Home</a></li>
<li> <a href="#">Blog</a></li>
<li> <a href="#">Services</a></li>
</ul>
<div class="right v-class-resp">
<input type="text" name="Search" id="Search" placeholder="Search Your Dish ">
<button type="button" class="btn">SEARCH</button>
</div>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<section class="background first-section">
<div class="box-main">
<div class="first-half">
<h1>WE BELIEVE IN</h1>
<hr>
<p>Food <span>dosen't have a religion. It is a </span> religion.</p>
</div>
<div class="second-half">
<div class="mob">
<img src="./img/PicsArt_11-18-09.49.37.png" alt="">
</div>
<div class="app">
<h2>Download our app directly</h2>
<img src="./img/toppng.com-available-on-the-app-store-565x169.png" alt="" class="apple">
<img src="./img/download-app-android.png" alt="" class="android">
</div>
</div>
</div>
</section>
<section class="contact">
<div class="end">
<h2>Contact Us</h2>
</div>
<div class="form">
<input type="text" name="name" id="name" class="form-input" placeholder="Enter your name">
<input type="text" name="phone" id="phone" class="form-input" placeholder="Enter your phone no.">
<input type="email" name="email" id="email" class="form-input" placeholder="Enter your email address">
<br>
<br>
<button class="sb">SUBMIT</button>
</div>
</section>
<footer class="low">
<ul>
<span style="font-size:2.5rem" >
<div class="social">
<li><a href="#"><i class="fab fa-facebook"></i> </a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
</div>
</span>
</ul>
<p class="text-footer">
copyright © 2020-All rights reserved
</p>
</footer>
</body>
</html>