-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtry.html
More file actions
58 lines (53 loc) · 1.51 KB
/
try.html
File metadata and controls
58 lines (53 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>loan</title>
</head>
<style>
body{
background:url('https://1.bp.blogspot.com/-8S9QX-YJ_HI/WrGK37a5DKI/AAAAAAAAAK4/FUwMfyZOK3wNvWwBY8dwKzI6G-4RhACJQCLcBGAs/s1600/Make%2BTheir%2BEyes%2BSmile%2B-%2B4%2BCaptivating%2BWeb%2BDesign%2BPractices.jpg')no-repeat center center fixed;
background-size: cover;
}
.navbar{
background-color: black;
border-radius : 20px;
text-align: center;
}
.navbar li{
float: left;
list-style: none;
margin: 13px 20px;
align-items: center;
text-align: center;
}
.navbar ul{
overflow: auto;
/* align-items: center; */
text-align: center;
}
.navbar li a{
padding: 4px 4px;
text-decoration: none;
color: white;
/* align-items: center; */
text-align: center;
}
</style>
<body>
<header>
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Loan</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pages</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
</body>
</html>