-
Notifications
You must be signed in to change notification settings - Fork 0
/
eroare_izolata.html
70 lines (62 loc) · 2.05 KB
/
eroare_izolata.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PlayGround (Loc de Joaca)</title>
<!-- GOOGLE FONTS (INTER - REGULAR, BOLD) -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- NORMALIZE CSS -->
<link rel="stylesheet" href="css/normalize.css" />
<!-- STYLE CSS -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- IZOLAM "PROBLEMA" -->
<!-- (CP 3) SEC. 'DOMENII' -->
<sectio class="bloc container bloc-domenii">
<!-- HEADER SEC. -->
<header class="bloc__header">
<h2>Incepand de la 8 €/luna</h2>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Illo, iste?
</p>
</header>
<!-- GRUPAREA CAMPURILOR INPUT -->
<div class="input-group">
<!-- INPUTS (INTRATI) -->
<input
type="text"
class="input"
placeholder="Introduceti numele domeniului aici..."
/>
<!-- BUTON -->
<button class="btn btn--accent">
<!-- ICON 'SVG' -->
<svg class="icon icon--alb">
<!-- INCARCAM DIN FISIERUL 'SPRITE.SVC'-- ID-UL '#SEARCH' -->
<use xlink:href="images/sprite.svg#search"></use>
</svg>
Cauta
</button>
</div>
<!-- LISTA DE PRET -->
<ul class="list bloc-domenii__preturi">
<li><span class="badge badge--secundar">.com 9€</span></li>
<li>.ro 12€</li>
<li>.net 9€</li>
<li>.eu 6€</li>
<li>.info 13€</li>
<li>.space 10€</li>
</ul>
</sectio>
<!-- ----------------------------------------------------------- -->
<!-- JAVASCRIPT FILE (IMPORT) -->
<script src="js/main.js"></script>
</body>
</html>