-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (152 loc) · 5.2 KB
/
index.html
File metadata and controls
160 lines (152 loc) · 5.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, intial-scale=1.0" />
<title>Cakes & Cookies By Shirin</title>
<script src="js/app.js" defer></script>
<link
href="https://fonts.googleapis.com/css2?family=Cabin&family=Herr+Von+Muellerhoff&family=Poiret+One&family=Source+Sans+Pro:wght@700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
/>
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<script src="https://unpkg.com/scrollreveal"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<nav class="navbar">
<div class="menu-toggle">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
<a href="index.html" class="logo">cakes&cookies</a>
<ul class="nav-list">
<li class="nav-item">
<a href="index.html" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About ME</a>
</li>
<li class="nav-item">
<a href="order.html" class="nav-link">Order</a>
</li>
<li class="nav-item">
<a href="Menu.html" class="nav-link">Menu</a>
</li>
</ul>
</nav>
</div>
</body>
<!--Section Order Now-->
<section class="hero" id="hero">
<div class="container">
<h1 class="headline-first">Let's Taste Perfection</h1>
<br />
<a href="Menu.html" class="btn btn-primary">Order Now</a>
</div>
</section>
<!--Section Discover My Story-->
<section class="My-story">
<div class="container">
<div class="row">
<div class="description padding-right animate-left">
<div class="global-headline">
<h2 class="sub-headline">Discover</h2>
<h3 class="headline headline-dark">My Story</h3>
</div>
<p>Welcome to my page. I love making cakes and cookies, enjoy!</p>
<a href="about.html" class="btn btn-secondary">Learn More</a>
</div>
<div class="image animate-right">
<img class="story-img" src="images/choc.jpg" alt="choc" />
</div>
</div>
</div>
</section>
<!--Section Explore Menu-->
<section class="menu">
<div class="container">
<div class="row">
<div class="image-group padding-right animate-left">
<img src="images/cheesecake2.jpg" alt="image" />
<img src="images/BrideToBe3.jpg" alt="image" />
<img src="images/alfajores.jpg" alt="image" />
<img src="images/congrats2.jpg" alt="image" />
</div>
<div class="description animate-right">
<div class="global-headline">
<h2 class="sub-headline">Explore</h2>
<h3 class="headline headline-dark">Menu</h3>
</div>
<p>
You can see different cakes and cookies and order what you like!
</p>
<a href="Menu.html" class="btn btn-secondary">See Full Menu</a>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer>
<div class="container">
<div class="back-to-top">
<a href="#hero"><i class="fas fa-chevron-up"></i></a>
</div>
<div class="footer__content">
<div class="footer__content-about animate-top">
<h4>About The web</h4>
<p>
Stay tuned for new updates! for orders please contact me 0522439436
</p>
</div>
<div class="footer__content-divider animate-bottom">
<div class="social-media">
<h4>Follow Us</h4>
<ul class="social-icons">
<li>
<a href="https://www.linkedin.com/in/shirin-labay/">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="https://github.com/ShirinLabay">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
<div class="newsletter-container">
<h4>CONTACT ME</h4>
<form action="" class="newsletter-form">
<div class="newsletter-form-box">
<input
type="text"
class="newsletter-input"
placeholder="Your email address..."
/>
</div>
</form>
</div>
</div>
</div>
</div>
</footer>
</html>