-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
33 lines (28 loc) · 833 Bytes
/
home.html
File metadata and controls
33 lines (28 loc) · 833 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<style>
body {
background-image: url(https://images.pexels.com/photos/159866/books-book-pages-read-literature-159866.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
background-repeat: no-repeat;
background-size: cover;
}
h1{
text-align: center;
}
p{
font-size: 100%;
text-align: center;
}
</style>
</head>
<body>
<h1> Welcome to the Online Book Store </h1>
<p>
This Book Store contains all types of Books related to subjects in Engineering.Go and find yourself a Book.
</p>
</body>
</html>