-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
200 lines (173 loc) · 4.64 KB
/
index.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>B2000</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
color: #333;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
header {
background: linear-gradient(135deg, #004540, #F06347);
color: #fff;
padding: 20px 0;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
font-weight: bold;
}
header nav a:hover {
text-decoration: underline;
}
.hero {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 40px 0;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
margin-bottom: 20px;
}
.hero button {
background: #ff4500;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
}
.hero button:hover {
background: #e03e00;
}
.hero img {
max-width: 100%;
height: auto;
}
section {
padding: 40px 0;
}
h2 {
margin-bottom: 20px;
}
.features {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.feature {
flex: 1 1 30%;
margin: 10px;
text-align: center;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
}
.specs {
margin-top: 20px;
width: 100%;
border-spacing: 0;
border-collapse: separate;
}
.specs th, .specs td {
padding: 12px 15px;
text-align: left;
}
.specs th {
background-color: #f9f9f9;
border-bottom: 2px solid #e5e5e5;
font-weight: bold;
}
.specs td {
border-bottom: 1px solid #e5e5e5;
color: #555;
}
.specs tr:nth-child(even) td {
background-color: #fafafa;
}
.specs tr:hover td {
background-color: #f1f1f1;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
footer a {
color: #ff6347;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="assets/logo.svg" height=70 alt="Product Image">
</div>
<div class="nav-links">
<a href="#rev">Ревізії</a>
<a href="#spec">Специфікація</a>
<a href="#doc">Документація</a>
<a href="#contact">Код</a>
</div>
</nav>
<div class="hero">
<div class="hero-text">
<h1>B2000 EATX</h1>
<p>305 × 330 mm</p>
<button onclick="location.href='https://github.com/5ht/zx'" type="button">Github</button>
</div>
<div class="hero-image">
<img width=300 src="assets/B2000-Rev3.0.jpg" style="padding: 10px 10px 10px 10px;background-color:#EEEEEE;">
</div>
</div>
</div>
</header>
<main>
<section id="specifications" class="container">
<h2><a name="spec">Специфікація</a></h2>
<table class="specs">
<tr>
<th>Процесор:</th>
<td>Motorola 68020.</td>
</tr>
</table>
</section>
</main>
<footer>
<p> 2024 © KS GROUP. All rights reserved.</p>
</footer>
</body>
</html>