-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (139 loc) · 4.34 KB
/
Copy pathindex.html
File metadata and controls
165 lines (139 loc) · 4.34 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Marc Moreno Pineda">
<meta name="copyright" content="propiedades del copyright Marc Moreno Pineda">
<meta name="revised" content="Julio 2023">
<link rel="stylesheet" href="CSS/snake.css">
<link rel="icon" type="image/png" href="IMG/favicon_3.png">
<title>Snake Shoes</title>
</head>
<body>
<div id="uno_pa"></div>
<header>
<div id="todo_header">
<div id="logito">
<img id="favicon_logo" src="IMG/favicon.png" alt="favicon">
</div>
<ul class="redes_header">
<li class="circulito">
<a class="link_redes_header" href="#">
<img class="img_redes" src="IMG/insta.png" alt="redes">
</a>
</li>
<li class="circulito">
<a class="link_redes_header" href="#">
<img class="img_redes" src="IMG/gmail.png" alt="redes">
</a>
</li>
<li class="circulito">
<a class="link_redes_header" href="#">
<img class="img_redes" src="IMG/whatts.png" alt="redes">
</a>
</li>
</ul>
</div>
</header>
<!-- ---------------------------------------------------- -->
<!-- linea 55 -> al poner id con nombre #dos_pa y presionar F5 en el navegador, se redirige sin sentido ahí, en vez de al inicio de la web !-->
<!-- ---------------------------------------------------- -->
<div class="ContButtons">
<a href="#uno_pa" class="button_uno">
<p class="fonts">01</p>
</a>
<a href="#dos_pa" class="button_dos">
<p class="fonts">02</p>
</a>
<a href="#tres_pa" class="button_tres">
<p class="fonts">03</p>
</a>
</div>
<!-- ---------------------------------------------------- -->
<main>
<section id="ContText">
<article class="text_uno">
<p>SNAKE SHOES</p>
</article>
<article class="text_dos">
<p class="gold_effect">GOLD EDITION</p>
</article>
<article class="text_tres">
<p>Offering the best quality to our buyers</p>
<p>"Shiny shoes, for someone shiny"</p>
<p>Stomping since 2004</p>
</article>
</section>
<div id="dos_pa"></div>
<!-- ------------------ -->
<section id="ContInfoTodo">
<div id="contPNG">
<div id="FlexShoes">
<div class="ContInfo top">
<div class="ContLinea">
<p class="golden_text">Golden Snake</p>
<span class="linea_info_uno"></span>
</div>
<p class="opac_text">A spectacular embossed
<br> golden snake that adorns
<br> the sole of the sneakers.
</p>
</div>
<div class="ContInfo center">
<div class="ContLinea">
<p class="golden_text">Flexible Sole</p>
<span class="linea_info_dos"></span>
</div>
<p class="opac_text">Manufactured with
<br>flexibility that adapts
<br>to the user.
</p>
</div>
<div class="ContInfo down">
<div class="ContLinea">
<p class="golden_text">Bright Colors</p>
<span class="linea_info_tres"></span>
</div>
<p class="opac_text">Bright colors that
<br> create that unique
<br>atmosphere when used.
</p>
</div>
</div>
<img class="snakePNG" src="IMG/snake_shoes_png.png" alt="snake">
</div>
</section>
</main>
<div id="tres_pa"></div>
<footer>
<section id="help_footer">
<p class="golden_text_footer">HELP</p>
<p class="opac_text_footer">Order status</p>
<p class="opac_text_footer">Shipping and deliveries</p>
<p class="opac_text_footer">Returns</p>
<p class="opac_text_footer">Payment options</p>
<p class="opac_text_footer">Contact</p>
</section>
<section id="terms_footer">
<p class="golden_text_footer">TERMS</p>
<p class="opac_text_footer">Terms of use</p>
<p class="opac_text_footer">Terms of sale</p>
<p class="opac_text_footer">Legal warning</p>
<p class="opac_text_footer">Privacy and cookie policy</p>
</section>
</footer>
<div id="creado_por">
<div class="marcmp_flex">
<div class="info_">Created by </div>
<div class="neon_">Marc Moreno Pineda</div>
</div>
<div class="marcmp_flex">
<div>
<img class="logo_neon" src="IMG/favicon_color.png" alt="">
</div>
<div class="info_"> - 2023</div>
</div>
</div>
</body>
</html>