-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
80 lines (77 loc) · 3.16 KB
/
index.php
File metadata and controls
80 lines (77 loc) · 3.16 KB
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
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>OmniCloud | Home</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="shortcut icon" href="./img/logo.png" type="image/png">
</head>
<body>
<div id="wrapper">
<?php include('./header.html'); ?>
<div class="hero">
<h1>Cloud made easy</h1>
<a href="./order.php" class="button">Jetzt Server bestellen</a>
</div>
<main>
<section>
<p class="centered">
Willkommen bei OmniCloud – Ihrem Innovator im IaaS-Cloud-Hyperscaler-Markt. Wir bieten innovative
Lösungen jenseits virtueller Maschinen. Unsere Plattform steht für Innovation, Zuverlässigkeit und
Flexibilität. Entdecken Sie die Zukunft der Cloud-Infrastruktur mit OmniCloud. Erleben Sie die ideale
Balance zwischen Innovation und bewährter Leistung.
</p>
</section>
<section class="card">
<h1>Unser Angebot</h1>
<p>
Bei uns erhalten Sie flexibel konfigurierte virtuelle Server.
</p>
<h3 class="inline">CPU:</h3>
<p class="inline">1 bis 16 leistungsstarke V-Cores</p>
<br>
<h3 class="inline">RAM:</h3>
<p class="inline">512 bis 32'768 MB schnellster DDR4 Arbeitsspeicher</p>
<br>
<h3 class="inline">SSD:</h3>
<p class="inline">10 bis 1'000 GB Speicher auf blitzschnellen SSDs</p>
<br/>
<br/>
<a href="./order.php" class="button">Jetzt bestellen</a>
<br/>
</section>
<section class="bewertungen">
<div class="ratings">
<div class="rating">
<h4>Jan Müller</h4>
<img src="./img/stars_1.webp" alt="">
<p><b>Unglaublich</b></p>
<p>Ich hoste schon seit mehreren Jahren bei OmniCloud. Ich wurde noch nie enttäuscht!!</p>
</div>
<div class="rating">
<h4>Severin Kienberger</h4>
<img src="./img/stars_1.webp" alt="">
<p><b>Geile Scheiss</b></p>
<p>Internet so schnell, dass Resultat kommt, bevor Frage gestellt.</p>
</div>
<div class="rating">
<h4>Basil Schöni</h4>
<img src="./img/stars_1.webp" alt="">
<p><b>Einfach zu verstehen, netter Service</b></p>
<p>Ich nutze OmniCloud seit geraumer Zeit. Es ist einfach zu bedienen und der Service ist immer
nett.</p>
</div>
</div>
<div>
<h1>OmniCloud</h1>
<h4>BEWERTUNGEN 968 • <b>HERVORRAGEND</b></h4>
<img src="./img/stars.webp" alt="" id="stars">
</div>
</section>
</main>
</div>
</body>
</html>