-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.html
75 lines (70 loc) · 2.89 KB
/
support.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Silant assistance</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./static/stylesheets/logoanimated.css">
<link rel="stylesheet" href="./static/stylesheets/header.css">
<style>
* {
margin: 0;
padding: 0;
border: 0;
font-family: 'Poppins', sans-serif;
}
header {
background: rgb(18, 36, 73);
background: radial-gradient(circle, rgb(18, 36, 73) 0%, rgb(4, 10, 27) 75%);
width: 100vw;
max-width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: relative;
overflow: hidden;
}
</style>
</head>
<body>
<header>
<h1 class="apptitle">Silant</h1>
<div class="animatedlogo">
<div><img src="static/layeredlogo/MainCircle.png" alt="Logo part"></div>
<div><img src="static/layeredlogo/MidleCircle.png" alt="Logo part"></div>
<div><img src="static/layeredlogo/LeftCircle.png" alt="Logo part"></div>
<div><img src="static/layeredlogo/RightCircle.png" alt="Logo part"></div>
</div>
<h2>Need help ?</h2>
<a href="mailto:[email protected]">
<h1>Email us</h1>
</a>
<a href="https://silant.net">
<h1>Home page</h1>
</a>
<svg class="wave" viewBox="0 0 500 150" preserveAspectRatio="none" style="height: 100%; width: 100%;">
<path d="M117.10,-17.27 C56.15,86.34 139.67,87.33 83.23,186.02 L0.00,150.00 L0.00,0.00 Z"
style="stroke: none; fill: url(#gradient);">
</path>
<defs>
<linearGradient id="gradient" x1="0.5" y1="0" x2="0.5" y2="1">
<stop offset="0" stop-color="#005959" />
<stop offset="1" stop-color="#070032" />
</linearGradient>
</defs>
</svg>
<svg class="wave2" viewBox="0 0 500 150" preserveAspectRatio="none" style="height: 100%; width: 100%;">
<path d="M213.19,0.00 C152.69,70.06 252.25,109.03 113.99,173.19 L500.00,150.00 L500.00,0.00 Z"
style="stroke: none; fill: url(#gradient2);;"></path>
<linearGradient id="gradient2" x1="0.5" y1="0" x2="0.5" y2="1">
<stop offset="0" stop-color="#070032" />
<stop offset="1" stop-color="#005959" />
</linearGradient>
</svg>
</header>
</body>
</html>