-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
95 lines (89 loc) · 1.44 KB
/
header.php
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
<style>
:root {
--bg: #212121;
--nc: #F5F5F5;
--bo: #2d6898;
}
#header{
position:absolute;
left:0;
top:0;
width:100%;
height:9%;
z-index:1;
background-color:var(--bg);
color:var(--nc);
}
#header:hover
{
opacity:0.8;
}
#mname{
position:absolute;
left:5%;
top:0;
width:15%;
height:9%;
color: var(--nc);
font-weight: bold;
font-size:20px;
font-family:"Courier New", Courier, monospace;
background-color: var(--bg);
z-index:2;
text-align:center;
}
#mname:hover{
border:1px solid var(--bo);
}
#about{
position:absolute;
left:75%;
top:0%;
width:10%;
height:9%;
color: var(--nc);
font-weight: bold;
font-size:20px;
font-family:"Courier New", Courier, monospace;
background-color: var(--bg);
z-index:2;
text-align:center;
}
#about:hover{
border:1px solid var(--bo);
}
#contact{
position:absolute;
left:86%;
top:0%;
width:10%;
height:9%;
color: var(--nc);
font-weight: bold;
font-size:20px;
font-family:"Courier New", Courier, monospace;
background-color: var(--bg);
z-index:2;
text-align:center;
}
#contact:hover{
border:1px solid var(--bo);
}
</style>
<div id="header">
</div>
<a href="index.php">
<div id="mname">
<p>PIERCEMAN SHOP</p>
</div>
</a>
<a href="Menu/aboutus.php">
<div id="about">
<p>ABOUT</p>
</div>
</a>
<a href="Menu/contact.html#contact">
<div id="contact">
<p>CONTACT</p>
</div>
</a>