-
Notifications
You must be signed in to change notification settings - Fork 0
/
action_get.html
69 lines (66 loc) · 1.67 KB
/
action_get.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recieved emails.</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
body {
background-color: #d6bb9f;
display: flex;
}
.box {
border: #f7f4f2 solid 5px;
border-radius: 10px;
margin: auto;
background-color: #574c40;
width: 500px;
height: auto;
display: flex;
flex-direction: column;
margin-top: 40px;
padding: 0 35px;
}
.rubrik_epost {
font-size: 35px;
font-family: "Quicksand", sans-serif;
font-weight: bolder;
margin: auto;
padding-top: 45px;
padding-bottom: 25px;
color: #f7f4f2;
}
.text_epost {
font-family: "Quicksand", sans-serif;
font-size: 27px;
font-weight: bolder;
text-align: center;
padding-bottom: 20px;
color: #f7f4f2;
}
img {
margin: auto;
padding-bottom: 25px;
}
</style>
</head>
<body class="layout_epost">
<div class="box">
<h1 class="rubrik_epost">Tack för ditt mejl!</h1>
<p class="text_epost">
Vi har mottagit ditt meddelande och återkommer med svar så fort vi kan.
<br /><br />
Varma Hälsningar,
</p>
<img
src="logos/rund.vit.png"
alt="Sussie logga"
class="logga"
width="250px"
height="200px"
/>
</div>
</body>
</html>