-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
125 lines (111 loc) · 3.67 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0px;
/* margin-top: 50px; */
padding: 0px;
/* color: whitesmoke; */
box-sizing: content-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
}
header {
position: fixed;
/* z-index: 9999; */
width: 100%;
}
a {
text-decoration: none;
color: antiquewhite;
}
body {
background-color: rgb(249, 249, 249);
}
.nav {
/* border: solid white; */
display: flex;
justify-content: space-between;
background-color: rgb(40, 40, 40);
}
.nright {
display: flex;
/* border: solid yellow; */
}
.nleft {
/* border: solid red; */
display: flex;
color: antiquewhite;
}
.nleft img {
margin: 6px 0 0 0;
}
.nright a {
/* border: solid aqua; */
color: antiquewhite;
text-decoration: none;
display: block;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
/* height: 100%; */
}
.nright a:hover {
color: aliceblue;
text-shadow: 0 0 20px antiquewhite, 0 0 40px antiquewhite, 0 0 60px antiquewhite, 0 0 80px antiquewhite;
transition: 1000ms;
/* text-decoration: underline; */
}
.wn {
display: flex;
justify-content: center;
font-family: Broadway;
font-size: 25px;
}
.nmid ul{
display: flex;
list-style: none;
/* padding: 20px; */
}
.nmid ul li a{
display: block;
padding: 20px;
}
.nmid ul li a:hover,.about{
color: white;
text-shadow: 0 0 20px antiquewhite, 0 0 40px antiquewhite, 0 0 60px antiquewhite, 0 0 80px antiquewhite;
transition: 1000ms;
}
</style>
</head>
<body>
<header>
<div class="nav">
<div class="nleft">
<img src="New folder/logo.png" alt="" >
<!-- <h4 style="width: 250px; padding-top: 13px; font-size: 25px;">DIGITAL LIBRARY</h4> -->
</div>
<div class="nmid">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="#" class="about" style="border-bottom: solid antiquewhite;">ABOUT</a></li>
<li><a href="featured.html">FEATURED</a></li>
<li><a href="blog.html">BLOG</a></li>
</ul>
</div>
<div class="nright">
<div class="login"><a href="login.html">LOGIN</a></div>
<div class="signup"><a href="signup.html">SIGNUP</a></div>
</div>
</div>
</header>
<br><br><br>
</body>
</html>