-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContact.html
More file actions
134 lines (121 loc) · 2.92 KB
/
Contact.html
File metadata and controls
134 lines (121 loc) · 2.92 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookstore</title>
</head>
<style>
body {
background-image: url("lib5.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 1em;
display: block;
align-items: center;
justify-content: center;
height: 100vh;
max-width: 100%;
margin: 10px;
margin-color:white;
background-color: rgba(26, 24, 39, 0.8);
padding: 20px;
border-radius: 4px;
box-shadow: -3px -3px 9px #aaa9a9a2,
3px 3px 7px rgba(147, 149, 151, 0.671);
}
.content{
width: 330px;
border-radius: 4px;
padding: 40px 30px;
margin-top: 100px;
box-shadow: -3px -3px 9px #aaa9a9a2,
3px 3px 7px rgba(147, 149, 151, 0.671);
}
.container {
max-width: 90%;
margin: 10px;
margin-color:white;
background-color: rgba(26, 24, 39, 0.8);
padding: 2em;
border-radius: 8px;
box-shadow: -3px -3px 9px #aaa9a9a2,
3px 3px 7px rgba(147, 149, 151, 0.8);
color:white;
}
.book-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.book {
display: flex;
margin-bottom: 20px;
border: 1px solid #ccc;
padding: 10px;
}
.book img {
max-width: 100px;
margin-right: 10px;
}
.book-details {
flex-grow: 1;
}
nav {
background-color: #444;
overflow: hidden;
text-align: center;
}
nav a {
float: left;
display: block;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
footer {
background-color: rgba(26, 24, 39, 0.8);
border-radius: 8px;
box-shadow: -3px -3px 9px #aaa9a9a2,
3px 3px 7px rgba(147, 149, 151, 0.671);
color: #fff;
text-align: center;
padding: 0%;
position: relative;
bottom: 0;
width: 100%;
margin-top:100px;
}
section {
padding: 2em;
}
</style>
<body>
<div class="container">
<header>
<h1>Contact Us</h1>
</header>
<nav>
<a href="welcome.html">< Go back</a>  
<a href="welcome.html">Home</a>   
<a href="catalog.html">Catalog</a>   
<a href="contact.html">Contact</a>   
<a href="about.html">About</a> 
<a href="login.html">Logout</a>
</nav>
<div class="container">
<section>
<p>For inquiries, please email us at: <a>bookbeasts@gmail.com</a></p>
</section>
</div>
<br><br><br><br><br><br><br><br>
<footer>
<p>© 2023 Bookstore. All rights reserved.</p>
</footer>
</div>
</body>
</html>