-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayground.html
46 lines (46 loc) · 1.38 KB
/
playground.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<section class="block container block-domain">
<header class="block__header">
<h2>Starting at $10 per month</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deleniti,
exercitationem?
</p>
</header>
<div class="input-group">
<input
type="text"
class="input"
placeholder="Enter domain name here..."
/>
<button class="btn btn--accent">
<svg class="icon icon--white">
<use xlink:href="images/sprite.svg#search"></use></svg
>Search
</button>
</div>
<ul class="list block-domain__prices">
<li><span class="badge badge--secondary">.com $9</span></li>
<li>.sg $10</li>
<li>.space $11</li>
<li>.info $14</li>
<li>.net $10</li>
<li>.xyz $10</li>
</ul>
</section>
</body>
</html>