-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactus.html
52 lines (50 loc) · 1.64 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo_no.png">
<title>Contact Us</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.contact-us {
text-align: justify;
margin: 50px 0px 50px 50px;
width: 60%;
}
.contact-us p {
font-size: 14px;
margin-bottom: 10px;
margin-right: 30px;
}
.image {
float: right;
width: 50%;
margin: 0px 10px 0px 0px;
}
.image img {
width: 100%;
height: 50%;
object-fit: fill;
}
</style>
</head>
<header class="flex items-center mt-8 mx-8">
<a href="/home" class="absolute-top"><img class="h-20 w-auto" src="library_logo.jpg" alt="Logo"></a>
<div>
<a href="/home" class="text-xl font-bold text-amber-800">UP SLIS LIBRARY<br></a>
</div>
</header>
<body class="font-sans bg-white text-gray-800 mt-8 ml-12">
<div class="flex">
<div class="contact-us">
<h1 class="text-5xl font-bold mb-4">CONTACT US</h1>
<p class="text-xl font-bold">Facebook</p>
<p class="text-xl font-bold">Zoom</p>
</div>
<div class="image">
<img src="logo_no.png" alt="Image">
</div>
</div>
</body>
</html>