-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.html
More file actions
60 lines (60 loc) · 1.73 KB
/
items.html
File metadata and controls
60 lines (60 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Items</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.new-items-container {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 40px;
max-width: 400px;
width: 100%;
text-align: center;
}
.new-items-container h2 {
margin-bottom: 20px;
}
.new-items-container p {
margin-bottom: 30px;
font-size: 1.1em;
line-height: 1.6;
}
.new-items-container a {
background-color: #ffbc20;
color: #ffffff;
border: none;
border-radius: 4px;
padding: 12px 24px;
font-size: 16px;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s;
}
.new-items-container a:hover {
background-color: #fbaa14;
}
</style>
</head>
<body>
<div class="new-items-container">
<h2>New Items</h2>
<p>This page will update you on all of our newest items in stock.</p>
<p>New items coming soon!</p>
<a href="Home.html">Back to Home</a>
</div>
</body>
</html>