-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (60 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=h, initial-scale=1.0">
<title>Practicaaa</title>
<style>
#html {
text-align: center;
font-family: 'Times New Roman', Times, serif;
margin-top: 1rem;
background-color: darkgrey;
width: 6rem;
border: black 1rem;
}
nav {
background-color: rgb(171, 246, 168);
flex-direction: column;
width: 200px;
filter: drop-shadow(0 0 0.75rem rgb(220, 217, 20));
}
nav h1 {
color: rgb(64, 118, 80);
text-shadow: 2px 2px 5px rgb(27, 2, 2);
}
input {
margin: 1rem;
}
.contexto {
font-size: 1rem;
color: blueviolet;
}
.cabrcera {
color: brown;
font-size: smaller;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif 2rem;
}
</style>
</head>
<body id="html">
<nav>
<h1>Titulo
<p>pagina super cool</p>
</h1>
<div>
<input type="text" placeholder="texto"> <input type="password" placeholder="password" id=pass "">
</div>
</nav>
<div class="contexto">
<div class="cabrcera">
ARRECHISIMA
<p>lalala</p>
</div>
<p>
tengo una flojera horrible, haaaaaa
</p>
</div>
</body>
</html>