-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (93 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>codytech</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Sen&display=swap'>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./images/favicon.png" type="image/png">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<section id="main" class="hero">
<header class="hero-header">
<div class="hero-header-container">
<nav class="hero-header-navitems">
<a href="#" class="burger-nav hero-header-navitem hide-nav show-nav">
<img src="https://sharangoharkhan.github.io/apple-clone/assets/imgs/icons8-menu-30.png">
</a>
<a href="https://codytech.dev/" class="hero-header-navitem show-nav ">
<img src="images/favicon.png" height="30px">
</a>
<a href="/about" class="hero-header-navitem" >
Nosotros
</a>
<a href="services.html" class="hero-header-navitem">
Servicios
</a>
<a href="#" class="hero-header-navitem">
Blog
</a>
<a href="#" class="hero-header-navitem">
Contacto
</a>
<a href="#" class="hero-header-navitem">
<img src="https://sharangoharkhan.github.io/apple-clone/assets/imgs/58da97fb4f501c40503c5bf0_search.svg">
</a>
<a href="#" class="hero-header-navitem show-nav">
<img src="images/bag.svg" >
</a>
</nav>
</div>
</header>
<div class="header-burger-nav-menu">
<div class="header-burger-items">
<div class="header-burger-flex">
<a href="#">
Nosotros
</a>
<a href="services.html">
Servicios
</a>
<a href="#">
Blog
</a>
<a href="#">
Contacto
</a>
</div>
</div>
</div>
</section>
<!-- partial:index.partial.html -->
<div id="main">
<h1 class="font">codytech</h1>
<div class="content">
<p>Puedes presionar <kbd>▲</kbd> <kbd>▼</kbd> en su teclado o deslizar hacia arriba/abajo para navegar. La rueda del raton también funciona.</p>
<!-- #region
<p><a href="https://codepen.io/theseventh" target="_blank">codepen</a> // <a href="https://twitter.com/the_seventh_kek" target="_blank">twitter</a>
-->
</div>
<div class="buttons">
<button class="next" onclick="go(-1)"></button>
<button class="prev" onclick="go(1)"></button>
</div>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js'></script>
<script src="./script.js"></script>
<script>
let burgerNav = document.querySelector('.burger-nav');
// burger nav click
burgerNav.addEventListener('click',function(){
let navburgerdiv = document.querySelector('.header-burger-nav-menu');
if (navburgerdiv.style.display == 'block')
{
navburgerdiv.style.display = 'none'
} else {
navburgerdiv.style.display = 'block'
}
})
</script>
</body>
</html>