-
Notifications
You must be signed in to change notification settings - Fork 1
/
page1.html
165 lines (131 loc) · 3.47 KB
/
page1.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lexical Royalties</title>
<link rel="stylesheet" href="styles.css">
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #fff;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
padding: 20px 50px;
background-color: #111;
}
.logo {
font-size: 1.5em;
font-weight: bold;
color: #ccc;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #ccc;
font-size: 1em;
position: relative;
}
.badge {
background-color: #ff6c00;
color: #fff;
font-size: 0.8em;
padding: 3px 7px;
border-radius: 50%;
position: absolute;
top: -10px;
right: -15px;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 50px;
background: url('books-bg.jpg') right no-repeat;
background-size: cover;
height: calc(100vh - 80px);
}
.hero-content h1 {
font-size: 3em;
text-align: center;
padding-bottom: 80px;
}
.hero-content .highlight {
color: #ff6c00;
}
.hero-content p {
font-size: 1.2em;
margin-top: 10px;
text-align: left;
color: #bbb;
max-width: 600px;
}
.btn {
margin-top: 10px;
display: inline-block;
padding: 10px 20px;
font-size: 1em;
background-color: #fff;
color: #000;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #ff6c00;
color: #fff;
}
.tech-icons {
margin-top: 30px;
display: flex;
justify-content: center;
gap: 20px;
}
.tech-icons img {
height: 100px;
}
</style>
<body>
<header>
<div class="logo">LEXICAL</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Career <span class="badge">2</span></a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1>Get your Royalties, <span class="highlight">only faster</span></h1>
<p>Lexical automates royalty payments for authors and bookstores, putting crypto in your wallet the second your book gets sold.</p>
<div class="btn">
<a href="page2.html" class="btn">Show me</a>
</div>
<div class="tech-icons">
<img src="easy.png" alt="Easy" />
<img src="stellar.png" alt="Stellar" />
<img src="soroban.png" alt="Soroban" />
</div>
</section>
</body>
</html>