-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.html
86 lines (82 loc) · 1.84 KB
/
banner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<title>Document</title>
<style>
body {
font-family: 'Open Sans', sans-serif;
}
.banner {
background-color: rgb(98,132,49);
width: 700px;
height: 160px;
background-image: radial-gradient(rgb(98,132,49) 40%, #7ba63a 68%, #c5ed68 100%);
background-repeat: no-repeat;
}
h1,h2,p,a,li {
color: white;
text-align: center;
}
li {
text-align: left;
}
h1 {
text-transform: uppercase;
font-weight: 600;
font-size: 18px;
margin-bottom: 2px;
text-shadow: 2px 2px rgba(0,0,0,0.4);
}
h2 {
font-weight: 400;
font-size: 14px;
margin-top: 0px;
margin-bottom: 4px;
text-shadow: 1px 1px rgba(0,0,0,0.4);
}
p,li {
margin: 0px;
font-weight: 300;
font-size: 14px;
text-shadow: 1px 1px rgba(0,0,0,0.4);
}
a {
margin-top: 2px;
font-size: 16px;
text-shadow: 2px 2px rgba(0,0,0,0.4);
text-decoration: none;
}
ul {
width: 500px;
margin: auto;
margin-bottom: 6px;
}
.cta {
margin-top: 4px;
text-align: center;
}
</style>
</head>
<body>
<div class="banner">
<div class="banner-content-container">
<h1>Coming in autumn 2020</h1>
<h2>A modestly priced online portal from best-selling author Duncan Cartlidge.</h2>
<h2><u>Features include</u></h2>
<ul>
<li>
Access to a library of videos and educational resources relating to quantity surveying estimating and construction project management
</li>
<li>
Discussion boards and question and answer and live forums
</li>
</ul>
<div class="cta">
<a href="mailto:duncan.cartlidge@btinternet.com">To express interest; duncan.cartlidge@btinternet.com</a>
</div>
</div>
</div>
</body>
</html>