-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsaas-free-trial-page-template.html
52 lines (46 loc) · 1.46 KB
/
saas-free-trial-page-template.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SaaS Free Trial Page Template</title>
<meta name="description" content="Your website description here!">
<style>
#hero{
text-align: center;
margin: 5%
}
#hero img{
margin: 3%;
}
#hero h1{
font-size: 390%;
}
@media (max-width: 768px) {
#hero h1{
font-size: 300%
}
}
.cta{
margin-top: 15px;
background-color:red;
padding: 1% 15%;
font-size: 150%;
border-radius: 5px;
color: white;
text-decoration: none;
}
.cta:hover{
background-color:rgb(105, 7, 7);
}
</style>
</head>
<body>
<section id="hero">
<h1>Plain English Headline</h1>
<p style="font-size: 150%;margin-top: 15px;">What we do | Lorem ipsum dolor sit amet consectetur, adipisicing elit. Enim minima facere non error. Repudiandae hic, veniam omnis atque molestiae tenetur error, quasi deserunt ut maxime corrupti iure blanditiis harum nisi.</p>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fdesigningforuncertainty.com%2Fwp-content%2Fuploads%2F2022%2F07%2Fmaxresdefault-22.jpg&f=1&nofb=1&ipt=5c4856580709cec096c299860e7cdf81cd34865d87cd5a617efb467b3d85c07c&ipo=images" alt="#" width="90%" height="100%">
<a href="#" class="cta">Get Started</a>
</section>
</body>
</html>