-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Insurance Demos Index</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 20px 0;
}
a {
text-decoration: none;
font-size: 24px;
background-color: #e30a17;
color: white;
padding: 10px 20px;
border-radius: 5px;
display: inline-block;
}
a:hover {
background-color: #c00c14;
}
</style>
</head>
<body>
<h1>Insurance Website Demos</h1>
<p>Select a website demo to view:</p>
<ul>
<li><a href="privilege.html">Privilege Insurance</a></li>
<li><a href="directline.html">Direct Line Insurance</a></li>
<li><a href="churchill.html">Churchill Insurance</a></li>
</ul>
</body>
</html>