forked from PlatziMaster/challenge-CSS-02
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (68 loc) · 2.06 KB
/
index.html
File metadata and controls
74 lines (68 loc) · 2.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Styles -->
<link rel="stylesheet" href="./css/styles.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous"
/>
<!-- Title -->
<title>SASS Workshop</title>
</head>
<body>
<!-- Header -->
<header>
<nav class="header">Medellín CSS</nav>
</header>
<!-- Main Section -->
<section class="main">
<img src="./assets/main-image.png" alt="Main Image" />
</section>
<!-- Search Section -->
<section class="search">
<div class="search__title">Search</div>
<div class="search__input">
<i class="fas fa-search"></i>
<input type="text" placeholder="SEARCH YOUR ANIMAL" />
</div>
</section>
<section class="ps">
<img class="ps__img--primary" src="./assets/crab.png" alt="Crab" />
<div class="ps__description--primary">
<p>Cangrejos<br />para todos</p>
</div>
<img
class="ps__img--secondary"
src="./assets/butterfly.png"
alt="Butterfly"
/>
<div class="ps__description--secondary">
<p>Mariposas</p>
</div>
</section>
<!-- Secondary Section -->
<section class="ss">
<img class="ss__img--primary" src="./assets/cat.png" alt="cat" />
<div class="ss__container">
<div class="ss__description--primary">
<p>Gatos<br />Majestuosos</p>
</div>
<img src="./assets/deer.png" alt="Deer" class="ss__img--secondary" />
<div class="ss__description--secondary">
<p>Ciervos</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p><span>Created by</span><br />@myuser</p>
</footer>
</body>
</html>