-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.42 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/custom-style.css">
<style>
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
}
.flex-container {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<header id="header">
<center>
<img id="header-img" src="https://cdn.freebiesupply.com/logos/large/2x/shure-logo-png-transparent.png" />
<nav id="nav-bar">
<a class="nav-link" href="https://allmylinks.com/fabriziobarrios22">Más información</a>
<a class="nav-link" href="https://soundcloud.com/fabrizio-barrios-saavedra">Sescucha musica en soundcloud</a>
<a class="nav-link" href="https://services.sumerlabs.com/catalogo/chiringuito-my-name-is-chicky22g">Comprar en la tienda en línea</a>
</nav>
</center>
</header>
<section id="learn-more">
<center>
<h1>Buque de guerra C RAM CIWS vs MiG 29 Phalanx CIWS derribando aviones de combate Simulación</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/LHMM3GYFExA" title="YouTube video player"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</center>
</section>
<section id="request-coupon">
<center>
<h2>Solicitar un cupón</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input id="email" type="email" placeholder="[email protected]" name="email"></input>
<input id="submit" type="submit"></input>
</form>
</center>
</section>
<section id="buy-on-amazon">
<div class="flex-container">
<div><a href="https://www.amazon.com/">Comprar en Amazon</a></div>
<div><a href="https://www.linio.com.pe/">Comprar en Linio</a></div>
<div><a href="https://services.sumerlabs.com/catalogo/chiringuito-my-name-is-chicky22g">Compra en Sumer</a></div>
</div>
</section>
</body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<script>
window.onscroll = function () { myFunction() };
var header = document.getElementById("header");
var sticky = header.offsetTop;
function myFunction() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
}
</script>
</html>