-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 742 Bytes
/
index.html
File metadata and controls
42 lines (37 loc) · 742 Bytes
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
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
</head>
<style type="text/css">
body {
font-family: Roboto, sans-serif;
}
section {
margin: 10px auto;
text-align: center;
}
div {
font-size: 40px;
}
a {
font-size: 80px;
display: block;
text-decoration: none;
color: #05C1B3;
}
span {
letter-spacing: -9px;
}
a:hover {
text-decoration: underline;
}
</style>
<body>
<section>
<div>Did you mean</div>
<a href='https://clickncruise.hu'>
<span>c</span>lickncruise.hu<i>?</i>
</a>
</section>
<body>
</html>