-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayground.html
More file actions
43 lines (41 loc) · 1.67 KB
/
playground.html
File metadata and controls
43 lines (41 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moshify</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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">
<script src="https://kit.fontawesome.com/6f879d6c21.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="block domain container">
<header class="block-header">
<h2 class="block-heading">The best webhosting starting at per month</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Corporis id, odit architecto pariatur, at nobis
beatae dicta reprehenderit.</p>
</header>
<div class="input-group">
<input class="input" placeholder="Enter Domain name here..." type="text">
<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 list-inline domain-prices">
<li>.com $9.20</li>
<li class="badge badge-secondary">.sg $9.20</li>
<li>.space $9.20</li>
<li>.info $9.20</li>
<li>.net $9.20</li>
<li>.xyz $9.20</li>
</ul>
</section>
<script src="js/main.js"></script>
</body>
</html>