-
Notifications
You must be signed in to change notification settings - Fork 0
/
us.html
166 lines (131 loc) · 3.02 KB
/
us.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<style>
p{
font-family: Arial, Helvetica, sans-serif;
}
.div{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
background-color: lightblue;
border-radius: 10px;
}
a{
text-decoration: none;
text-align: center;
font-family:Arial, Helvetica, sans-serif;
}
.menu-bar2 ul li:active .sub-menu{
display: block;
position: absolute;
background-color: red;
margin-top: 15px;
margin-left: 15px;
}
.menu-bar2 ul li:active .sub-menu ul{
display: block;
align-items: center;
}
.menu-bar2 ul li:active .sub-menu ul li{
width: 10%;
padding: 10px;
}
.menu-bar2{
text-align: center;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
margin-top: 20%;
}
.menu-bar2 ul{
display: inline-flex;
list-style: none;
}
.menu-bar2 ul li {
width: 100%;
margin: 15px;
padding: 15px;
padding-left: 0;
margin-left: 0;
transition: all 0.5s;
}
.menu-bar2 ul li a{
color: black;
text-decoration: none;
}
a{
color: black;
text-decoration: none;
}
.menu-bar2 ul li a:hover {
color: red;
border-radius: 5px;
}
.active{
border-top: black;
border-style: solid;
border-left-color: white;
border-right-color: white;
width: 100%;
font-size: larger;
}
.sub-menu{
display: none;
color: white;
font-size: medium;}
</style>
</head>
<body>
<a href="index.html"><h1>Freeneters</h1></a>
<div class="div">
<h2>
<p>
Freeneters is a website built for helping people who are in need of data, without any costs
</p>
<h2>
<p>
We as freeneters saw an opportunity to provide function to people who neeed to use data for:
</p>
<li>School</li>
<li>Social media</li>
<li>Running business</li>
<li>ETC</li>
</h2>
</h2>
<h1>What's great about freeneters ?</h1>
<h2><li>
Freeneters is free of charges
</li>
<li>
Freeneters is reliable
</li>
<li>
It's easy to use
</li></h2>
</div>
<div class="menu-bar2">
<ul class="active">
<li><a href="#"><a>
Contact us
</a>
<div class="sub-menu">
<ul>
<li>
0712784161
</li>
<li>
</li>
</ul>
</div>
</li>
<li><a href="privacy-and-poilicy.html">
Privacy policy
</a></li>
<li>
<a href="terms.html">Terms and conditions</a>
</li>
</ul>
</div>
</body>
</html>