-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.html
60 lines (55 loc) · 1.37 KB
/
sample.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
<!DOCTYPE html>
<html>
<head>
<title>Sample Website</title>
<style>
body {
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
width: 400px;
padding: 40px;
background-color: #333;
text-align: center;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
max-width: 80%;
}
.container h1 {
font-size: 24px;
margin-bottom: 20px;
}
.container p {
font-size: 16px;
margin-bottom: 30px;
}
.container button {
background-color: #444;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 3px;
cursor: pointer;
}
.container button:hover {
background-color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Pretty website!</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Animi voluptatem neque totam iure temporibus. Tempora voluptatibus doloribus dolorem ab quos at assumenda fugiat atque, quibusdam eius voluptas ipsa libero laborum!</p>
<a href="https://arrayy.xyz"><button>Click me!</button></a>
</div>
</body>
</html>