-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (114 loc) · 3.99 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
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
<!DOCTYPE html>
<html>
<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">
<meta name="title" content="Título de la WEB" />
<meta name="description" content="Descripción de la WEB" />
<title>Blog Personal</title>
<!--CUSTOM CSS-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!---FONT OSWALD-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
<!--FONT AWESON-->
</head>
<body>
<div class="container">
<!---Navigation-->
<nav class="nav-main">
<!--Brand-->
<img src="img/brand.png" alt="lente" class="nav-brand">
<!--Left Nav-->
<ul class="nav-menu">
<li>
<a href="#">Podcast</a>
<li>
<a href="https://www.youtube.com/">Canales</a>
</li>
<li>
<a href="https://www.uacam.mx/">Universidad</a>
</li>
<li>
<a href="#">Mas</a>
</li>
</ul>
</nav>
<hr>
<!--SHOW CASE-->
<header class="showcase">
<h1>Reyna's Blog</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
</p>
<a href="#" class="btn">Leer Mas</a>
</header>
<!--CONTENido-->
<div class="cards">
<div>
<img src="img/img01.jpg" alt="img_animals">
<h3>Persona</h3>
<p>Reyna del R Hernandez Olvera, 21, ISC, Ex Hacienda Kala Campeche, Padresy hernanos</p>
</div>
<div>
<img src="img/img02.jpg" alt="img_abstract">
<h3>Goals amd Motivation</h3>
<p>Independencia financiera, salud y seguir aprendiendo, relizar mis pasatiempos, tal vez la descomfianza en mis propias habilidades y a veces mis padres, elinsomnio xD supongo bueno talvez sea cuando tengo pendientes</p>
</div>
<div>
<img src="img/img03.jpg" alt="img_dw">
<h3>A Day in the life of...</h3>
<p>Que el trabajo se realize adecuadamente y sin contratiempos, Mmmm... mi PC, compañeros de clase y amigos, personas de foros de discusion, GATOS (molestos), etc., cuando termino mi trabajo a tiempo y y como es debido, que las personas con las que trabajo sean inconpetentes o no entreguen susactividades a tiempo o que yo no pueda lograr algo por que me falte conocimientos</p>
</div>
</div>
<!--card banner-->
<section class="card-banner">
<div class="content">
<article>
<h2>What's your brand personality?</h2>
<label>Elite
<input type="range" id="range_one" min="0" max="10" value="6"></input>Atractivo para las masas
</label>
<br>
<label>Serio
<input type="range" id="range_two" min="0" max="10" value="6"></input>Jugueton
</label>
<br>
<label>Convencional
<input type="range" id="range_tree" min="0" max="10" value="8"></input>Rebelde
</label>
<br>
<label>Amigable
<input type="range" id="range_four" min="0" max="10" value="6"></input>Autoritario
</label>
<br>
<label>Madure and Clasico
<input type="range" id="range_five" min="0" max="10" value="8"></input>Joven and Innovador
</label>
<figure id="id-img">
<img src="img/img04.gif" />
<figcaption>Gif</figcaption>
</figure>
</article>
</div>
</section>
<aside>
<h2>Enlaces</h2>
<a href="https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g">Gawr Gura Ch. hololive-EN</a>
<br>
<a href="https://www.youtube.com/watch?v=5qap5aO4i9A">lofi hip hop radio - beats to relax/study to</a>
<br>
<a href="https://www.youtube.com/watch?v=WzhI65Ubq48">CIVILIAN『ぜんぶあんたのせい』</a>
</aside>
</div>
<!-- Footer -->
<footer class="footer">
<h3>Reyna's Blog Copyright</h3>
</footer>
<!--Java Script-scrollreveal-->
<script src="https://unpkg.com/scrollreveal"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>