forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (89 loc) · 3.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cake Fantazia</title>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<!-- navbar sits on top as you scroll down mobile screen -->
<header class="header">
<h1>Fantazia Cake</h1>
<div class="logo">
<img class="header-img" src="images/logo2.jpg" alt="logo-image" />
</div>
<hr>
<nav class="nav">
<ul>
<li><a class="nav-links" href="home">Home</a></li>
<li><a class="nav-links" href="cakes">Cakes</a></li>
<li><a class="nav-links" href="ordering">Ordering</a></li>
<li><a class="nav-links" href="lessons">Lessons</a></li>
<li><a class="nav-links" href="about">About</a></li>
<li><a class="nav-links" href="contact us">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- hero carousel with images -->
<section class="carousel-container">
<div class="slide">
<img class="slider-img" src="/responsive-cake-webpage/images/carousel/torta3.jpg" alt="cake5">
<img class="slider-img" src="/responsive-cake-webpage/images/carousel/torta5.jpg" alt="cake6">
<img class="slider-img" src="/responsive-cake-webpage/images/carousel/torta6.jpg" alt="cake7">
<img class="slider-img" src="/responsive-cake-webpage/images/carousel/torta7.jpg" alt="cake8">
</div>
</section>
<hr />
<!-- intro section welcome -->
<section class="container">
<h1>
Welcome To Fantazia Cake
</h1>
<h2></h2>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, ab. Excepturi dicta minima commodi vero quidem in dolore non dolorum. Deserunt vero minima ipsa sunt esse, minus placeat ducimus.
</p>
</section>
<hr />
<!-- cake image section -->
<section class="row">
<div class="column">
<div class="cake">
<h2>ROZY CAKE</h2>
<img src="/responsive-cake-webpage/images/Cakes/cake4.jpg" alt="cake1">
<h3>It has everything you need for every occasion. </h3>
</div>
<div class="cake">
<h2>STRAWBERRY STACK</h2>
<img src="/responsive-cake-webpage/images/Cakes/cake5.jpg" alt="cake2">
<h3>Wait til you eat it!</h3>
</div>
<div class="cake">
<h2>SUNSHINE IN A CUP</h2>
<img src="/responsive-cake-webpage/images/Cakes/cake7.jpg" alt="cake3">
<h3>Enough icing to make you want more!</h3>
</div>
<div class="cake">
<h2>GLAZED CAKE BITES</h2>
<img src="/responsive-cake-webpage/images/Cakes/cake9.jpg" alt="cake4">
<h3>All you will do is want more!</h3>
</div>
</div>
</section>
<hr />
<!-- footer section starts -->
<footer>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-instagram"></i></a>
</footer>
</main>
</body>
</html>