-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
51 lines (45 loc) · 1.73 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
<!--Responsive design to work on both mobile and computers
4 pages - home/index, about, products, contact
both header and footer should be the same in all 4 pages
header - a link for each of the 4 pages
footer - links to FB(https://www.facebook.com/munamiicupcakes/) and Instagram (https://www.instagram.com/munamii.cakery/) + contact link to email
Use Google Fonts
NO emojis
On smaller screens, the columns will stack on top of each other.</p>
<p>Resize the browser window to see the responsive effect.</p>
<p><strong>Note:</strong> Flexbox is not supported in Internet Explorer 10 eand earlier versions.</p>
-->
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<div class="header">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
</div>
</head>
<body>
<div class="row">
<div>
<br>
<br>
<br>
<img class="image-container" src="C:\lexicon_dotnet_nov25\Frontend\Bakery\Pictures\Cupcakes\Cookie-Monster-Cupcakes-7617.jpg" />
</div>
<h2><a href="products.html">Cupcakes</a></h2>
<br>
<div>
<img class="image-container" src="C:\lexicon_dotnet_nov25\Frontend\Bakery\Pictures\Weddingcakes\Mimmas1.jpg"/>
</div>
<h2><a href="products.html">Weddingcakes</a></h2>
<br>
<br>
</div>
</body>
<div class="footer">
<a href="https://www.facebook.com/munamiicupcakes/", target="_blank">Our Facebook</a>
<a href="https://www.instagram.com/munamii.cakery/", target="_blank">Our Instagram</a>
</div>
</html>