-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhero.html
73 lines (65 loc) · 2.16 KB
/
hero.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hero Section</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
section#hero {
padding-top: 128px;
padding-bottom: 72px;
padding-left: 80px;
padding-right: 80px;
color: var(--color-pink-10, #43153A);
text-align: center;
/* Display 1 */
font-family: Verdana, sans-serif;
font-size: 28px;
font-style: normal;
font-weight: 500;
}
section#hero > p {
font-family: Inter;
color: var(--color-text-text-secondary, #646269);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
max-width: 768px;
text-align: center;
margin: 0 auto;
padding-bottom: 48px;
}
button {
font-family: Inter;
font-size: 16px;
border-radius: 40px;
border: 1px solid var(--color-border-border, #D1D1D1);
background: var(--color-bg-fill-fill, #FFF);
height: var(--space-1200, 48px);
padding: var(--space-300, 12px) var(--space-500, 20px);
box-shadow: 0px 5px 5px rgba(128, 128, 128, 0.685);
transition-duration: 0.4s;
}
button:hover {
background-color: #a05e93;
}
#dark-button {
background-color: black;
color: white;
}
#dark-button:hover {
background-color: #a05e93;
}
</style>
</head>
<body>
<section id="hero">
<h2>Be Your Own Company</h2>
<p>Enjoy a unique work experience in an environment of efficiency and high energy as you immerse yourself in a world of oriental technology and business.</p>
<button>All Services</button>
<button id="dark-button">Book Appointment</button>
</section>
</body>
</html>