-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (134 loc) · 3.53 KB
/
index.html
File metadata and controls
139 lines (134 loc) · 3.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lo mejor de JavaScript</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
font-family:"Arial", sans-serif;
text-align: center;
margin: 0 auto;
background: red;
}
form{
padding: 2em 0;
background: rgba(130, 20, 130, 0.86);
}
form h1{
color: white;
font-size: 3em;
padding-bottom: .5em;
text-shadow: hsla(50, 100%, 52%, 0.89) 2px 2px 20px;
}
form input{
padding: 1em;
}
form input[type="button"]{
color: white;
background: black;
border: none;
padding: .8em 2em;
font-size: 1em;
/*border-radius: 10px;*/
}
.Content{
background: lightgray;
padding: 1em 0 ;
}
.Content__box{
text-align: center;
margin: 0 auto;
}
.Content_item{
background: white;
display: block;
width: 80%;
text-align: center;
padding: 15px;
margin: 2em auto;
border-radius: 20px;
box-shadow: rgba(0,0,0, .2) 2px 2px 30px;
}
.Content_item p{
margin: 0 auto;
text-align: center;
max-width: 500px;
margin-bottom: .7em;
}
.Content_item a{
background: salmon;
color: white;
text-decoration: none;
font-size: 1.2em;
padding: .8em;
display: block;
margin-top: 2.5em;
width: 220px;
text-align: center;
margin: 0 auto;
border-radius: 20px;
transition: .5s;
/*border-bottom: 6px solid black;*/
}
.Content_item a:hover{
background: yellow;
transform: scale(1.1);
letter-spacing: 3px;
color: white;
/*transform: rotate(360deg);*/
/*transform: translate(193px, 32px);*/
}
@media (min-width: 700px){
.Content_item{
display: inline-block;
width: 30%;
margin: .2em;
}
}
</style>
</head>
<body>
<form id="form_main" action="">
<h1>AnimeDataApp</h1>
<input id="txt_name" type="text" placeholder="Ingresar nombre">
<input id="txt_imagen" type="text" placeholder="Ingresar URL imagen">
<input id="txt_data_serie" type="text" placeholder="Serie del anime">
<input id="txt_data_genero" type="text" placeholder="Genero del anime">
<input id="txt_data_sexo" type="text" placeholder="¿hombre o mujer?">
<input id="btn_send" type="button" value="Publicar">
</form>
<section class="Content">
<div class="Content__box">
<article class="Content_item">
<figure>
<img src="./image/networking.png" alt="facebook" width="200">
</figure>
<h2>Facebook</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis quo fuga eaque, provident, doloribus, id delectus sapiente harum, repellat et sequi voluptas. Necessitatibus eaque dolor, sint? Eos incidunt deserunt cupiditate.</p>
<a href="#">Ver más</a>
</article>
<article class="Content_item">
<figure>
<img src="./image/networking.png" alt="facebook" width="200">
</figure>
<h2>Youtube</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis quo fuga eaque, provident, doloribus, id delectus sapiente harum, repellat et sequi voluptas. Necessitatibus eaque dolor, sint? Eos incidunt deserunt cupiditate.</p>
<a href="#">Ver más</a>
</article>
<article class="Content_item">
<figure>
<img src="./image/networking.png" alt="facebook" width="200">
</figure>
<h2>Twitter</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quis quo fuga eaque, provident, doloribus, id delectus sapiente harum, repellat et sequi voluptas. Necessitatibus eaque dolor, sint? Eos incidunt deserunt cupiditate.</p>
<a href="#">Ver más</a>
</article>
</div>
</section>
<script type="text/javascript" src="./js/code.js"></script>
</body>
</html>