-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductsAndServices.html
45 lines (41 loc) · 1.19 KB
/
ProductsAndServices.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<link href="css/style.css" rel="stylesheet" />
<style>
* {
box-sizing: border-box;
}
body {
font-family: Verdana, sans-serif;
}
.mySlides {
display: none;
}
img {
vertical-align: middle;
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {
font-size: 11px
}
}
</style>
<title>Products & Services</title>
</head>
<body>
<ul class="styled-list">
<li class="styled-li"><a href="index.html">Home</a></li>
<li class="styled-li"><a class="active" href="ProductsAndServices.html">Products & Services</a></liclass="styled-li">
<li class="styled-li" style="float:right"><a href="about.html">About</a></li>
</ul>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</body>
</html>