-
Notifications
You must be signed in to change notification settings - Fork 2
/
culture.html
135 lines (132 loc) · 4.47 KB
/
culture.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112431571-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112431571-5');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cosmos</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'><!-- Font -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" type="image" href="images/favicon.ico">
</head>
<body>
<header>
<nav>
<ul class="header-left">
<li>
<a href="index.html" id="icon">
<img src="images/favicon.ico" id="icon-image" />
</a>
</li>
<li>
<a href="education.html">Educación</a>
</li>
<li>
<a href="rockets.html">Cohetes</a>
</li>
<li>
<a href="aeromodelling.html">Aeromodelismo</a>
</li>
<li>
<a href="research.html">Investigación</a>
</li>
<li>
<a class="active" href="culture.html">Cultura</a>
</li>
<li class="dropdown">
<a href="projects.html">Proyectos</a>
<ul class="dropdown-content">
<li>
<a href="">Ala volante</a>
</li>
<li>
<a href="">Cohetes de agua</a>
</li>
<li>
<a href="">Concurso de arte</a>
</li>
<li>
<a href=""></a>
</li>
<li>
<a href=""></a>
</li>
</ul>
</li>
</ul>
<ul class="header-right">
<li>
<a href="info.html">Info</a>
</li>
<li>
<a href="contact.html">Contacto</a>
</li>
<li>
<a href="account.html">Cuenta</a>
</li>
</ul>
</nav>
</header>
<div class="first-section dark-section">
<h2>CULTURA</h2>
<p>
El equipo de cultura organizará actividades de cine, arte, historia, etc., buscando integrar en la ingeniería aeroespacial un aprecio por la belleza del cosmos.
</p>
<br>
<div class="image-section">
<div style="width: 50%; background: url('images/cultura/cine_1.jpg') no-repeat center; background-size: cover;"></div>
<div style="width: 50%; background: url('images/cultura/tertulia.jpg') no-repeat center; background-size: cover;"></div>
</div>
<br>
<p>
Actualmente estamos en un ciclo de cine aeroespacial. <a href="https://docs.google.com/forms/d/e/1FAIpQLSc_tEsRp3xXN89lgQkO1fhTYbXQeSFSErbsbxIpGaivYNwyJg/viewform?usp=sf_link" target="_blank">¡Apúntate aquí!</a>
</p>
<div class="image-section" style="height: 40vw;">
<div onclick="location.href='images/cultura/cine_poster1_hires.png'" style="cursor:pointer; width: 30%; background: url('images/cultura/cine_poster1.webp') no-repeat center; background-size: cover; border-radius: 8px;"></div>
<div onclick="location.href='images/cultura/cine_poster2_hires.png'" style="cursor:pointer; width: 30%; background: url('images/cultura/cine_poster2.webp') no-repeat center; background-size: cover; border-radius: 8px;"></div>
<div onclick="location.href='images/cultura/cine_poster3_hires.png'" style="cursor:pointer; width: 30%; background: url('images/cultura/cine_poster3.webp') no-repeat center; background-size: cover; border-radius: 8px;"></div>
</div>
</div>
<footer>
<div class="footer-left">
<ul style="display: inline-block; float: left;">
<li>
<a href="https://docs.google.com/document/d/1JCsOie2zNQspg8h-rVtuWD5g4GTfu7inIbeGcyhlrrk/edit?usp=sharing" target="_blank">Qué aprender</a>
</li>
<li>
<a href="entities.html">Entidades colaboradoras</a>
</li>
</ul>
<ul style="display: inline-block; float: right;">
<li><a href="cookies.html">Cookies</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSfXzTB64BxPZH1JsvJAMgx3bZwNBC5UngCPu6MTcT5tfQQX1A/viewform">Inscríbete</a></li>
</ul>
</div>
<div class="footer-middle">
<a href="index.html"></a>
<img src="images/logo.jpg">
</div>
<div class="footer-right">
<div id="follow-us-div">
<div id="follow-us">Síguenos</div>
<div>
<a href="https://twitter.com/cosmos_urjc" target="_blank">
<ion-icon name="logo-twitter"></ion-icon>
</a>
<a href="https://www.instagram.com/cosmos_urjc/" target="_blank">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="https://unpkg.com/ionicons@4.4.4/dist/ionicons.js"></script>
</body>
</html>