-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
122 lines (120 loc) · 4.04 KB
/
header.php
File metadata and controls
122 lines (120 loc) · 4.04 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
<!DOCTYPE html>
<html lang="ES">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Laura Guerra Design</title>
<link rel="icon" type="image/png" href="http://cooinpaz.com.co/laura/logoFavicon.png2wbmp" />
<link rel="icon" type="image/x-icon" href="http://cooinpaz.com.co/laura/faviconLaura.ico" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/foundation.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/swiper.min.css">
<link rel="stylesheet" href="recursos/fontE/fontE.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('.btnMovil').click(function(){
console.log('funca!!');
if ($('header#headerG #navBar').hasClass('openNav')){
$('header#headerG #navBar').removeClass('openNav');
}else{
$('header#headerG #navBar').addClass('openNav');
}
});
});
</script>
<style>
@font-face {
font-family: Dragon_is_coming;
src: url(recursos/fontE/Dragoniscoming.otf);
}
body{
padding:0px;
margin:0px;
}
.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.newSlide .swiper-slide{
flex-direction:column;
background-color:#ffffff;
}
@media screen and (min-width:480px){
.newSlide .swiper-slide{
flex-direction:row;
}
}
</style>
</head>
<body>
<header id="headerG">
<div class="row">
<div class="small-12">
<div class="headCont">
<div class="hide-for-small-only small-6 medium-4 columns">
<div class="redesHeader">
<p>
<a href="https://www.facebook.com/laucastillog" target="_blank" title="" class="small-6 columns"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/laura_guerra22/" target="_blank" title="" class="small-6 columns"><i class="fa fa-instagram"></i></a>
</p>
</div>
</div>
<div class="small-6 medium-4 columns">
<div class="brandCont">
<a href="" alt="logolink">
<picture>
<img src="recursos/img/logo001.png" alt="logo" />
</picture>
</a>
</div>
</div>
<div class="small-6 medium-4 columns">
<div class="firstLick">
<a href="aboutMe.php" title="" class="small-12 medium-6 columns">ABUT ME</a>
<a href="contacto.php" title="" class="small-12 medium-6 columns">CONTACT</a>
</div>
</div>
</div>
</div>
</div>
<section id="navBar">
<div class="row">
<div class="small-12 columns">
<div class="btnToggle">
<button type="button" class="btnMovil"><i class="fa fa-bars iconNavMovil"></i></button>
</div>
<div class="small-12 columns contItemsNav">
<ul>
<li><a href="index.php" title="Home">Home</a></li>
<li><a href="corporativa.php" title="Identidad Corporativa">Identidad Corporativa</a></li>
<li><a href="materialP.php" title="Material Publicitario">Material Publicitario</a></li>
<li><a href="fotografiaP.php" title="Fotografia Publicitaria">Fotografia Publicitaria</a></li>
<li><a href="eventosE.php" title="BTL Eventos y espectaculos">BTL Eventos y espectaculos</a></li>
<li><a href="audioVideo.php" title="Audio y video">Audio y video</a></li>
</ul>
</div>
</div>
</div>
</section>
</header><!-- /header -->