-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (44 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#logo {
text-align: center;
margin-top: 50px;
}
body {
background-image: url("paper.jpeg");
background-color: #cccccc;
background-size: cover;
}
</style>
<link rel="stylesheet" href="style.css">
<title> My Donuts Diary | Home</title>
<link rel="icon" href="logo-icon.png" type="image/png">
</head>
<body>
<div class="marginTop50">
<ul>
<li> <a href="index.html">Home</a> </li>
<li> <a href="about-us.html">About Us</a> </li>
<li> <a href="services.html">Services</a> </li>
<li> <a href="contact.html">Contact</a> </li>
</ul>
</div>
<div id="logo">
<img src = "logo.png" width=300px alt=""/>
</div>
<h1 style=font-size:50px; text-align=center;>
My Donuts Diary
</h1>
<h2 style=font-size:30px; text-align=center; font-family=cursive;>
Baking Fresh Donuts
</h2>
<div>
<img src = "Donut-Mixes.png" class="pic-center" />
</div>
<footer style='text-align: right'>
<p> @2022 My Donuts Diary<br>
</footer>
</body>
</html>