-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (41 loc) · 1.66 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
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="shortcut icon" href="bloc-icon.png" type="image/x-icon">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Bloc de notas</title>
</head>
<body>
<main>
<section class="container">
<article class="top-bar">
<span>
<img src="bloc-icon.png" alt="bloc-icon" width="12" height="12">
Reseñas no editables
</span>
<span class="close-min-max-btns">
<i onclick="document.getElementsByClassName('container')[0].style.display = 'none'"
class="fa fa-circle text-red" aria-hidden="true"></i>
<i onclick="document.getElementsByClassName('container')[0].style.display = 'none'"
class="fa fa-circle text-yellow" aria-hidden="true"></i>
<i onclick="document.getElementsByClassName('container')[0].style.display = 'none'"
class="fa fa-circle text-green" aria-hidden="true"></i>
</span>
</article>
<article class="white-bg round-borders">
<p class="review">Esto es un texto no editable.</p>
<p class="review">Tan sólo es un párrafo</p>
<p class="review">En caso de querer editar, ve al código.</p>
<p class="review">¿Quizás un Input te ayudaría?</p>
<p class="review"></p>
<p class="review">¡La vida es simple! ;)</p>
</article>
</section>
</main>
</body>
</html>