-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 2.3 KB
/
index.html
File metadata and controls
99 lines (96 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Page Design</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: "Comic Sans MS";
background-color: #e7e7e7; /* Gray background */
}
.container {
width: 65%; /* Adjusted width to add padding on the sides */
max-width: 1000px; /* Maximum width of the content */
margin: auto; /* This centers the container */
background-color: white;
overflow: hidden; /* Clear floats */
margin-top: 30px;
}
.header, .nav, .article-title, .article-content, .footer {
padding: 0 20px; /* Padding on the sides */
}
.header {
background-color: white;
color: black;
font-weight: bolder;
text-align: left;
padding-top: 20px;
padding-bottom: 20px;
font-size: 26px;
}
.nav {
background-color: #e7e7e7;
color: #fff;
text-align: left;
padding: 10px 0;
}
.nav a {
color: black;
padding: 0 15px;
text-decoration: none;
}
.article-title {
background-color: white;
color: black;
text-align: left;
padding-left: 5px;
}
.placeholder-image {
width: 100%;
height: 400px;
display: grid;
justify-content: center;
align-items: center;
}
.article-content {
text-align: left;
background-color: white;
color: black;
padding: 10px 0;
}
.footer {
background-color: #e7e7e7;
color: black;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>ComicSansRocks.com</h1>
</div>
<div class="nav">
<a href="#">HOME</a>
<a href="#">PAGE2</a>
<a href="#">PAGE3</a>
</div>
<div class="article-title">
<h2>Buy your yerba mate here</h2>
</div>
<img src="images/image.png" alt="Tranquil Landscape" class="placeholder-image">
<div class="article-content">
<p>Yerba mate is a world-renowned Argentinian infusion.</p>
<hr style="border: 3px solid black; margin: 10px 0;">
<p>Only the best American instructors in the world love mate.</p>
</div>
<div class="footer">
<p>This web site was created by Juan P. Zanguitu © 2024</p>
</div>
</div>
</body>
</html>