-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (50 loc) · 2 KB
/
index.html
File metadata and controls
57 lines (50 loc) · 2 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oqubo - Videojuegos y Patrimonio Cultural</title>
<link href="https://fonts.googleapis.com/css2?family=Playwrite+NL:wght@100..400&family=Quicksand:wght@300..700&family=Zain:wght@200;300;400;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo-section">
<div class="logo-placeholder"></div>
<span class="company-name">oqubo</span>
</div>
<nav class="nav-links">
<a href="mailto:contacto@oqubo.es" class="nav-link" title="Email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://play.google.com/store/apps/dev?id=8285512681047721607" class="nav-link" title="Google Play Store">
<i class="fab fa-google-play"></i>
</a>
<a href="#" class="nav-link" title="App Store">
<i class="fab fa-app-store-ios"></i>
</a>
</nav>
</div>
</header>
<main class="main">
<div class="container">
<!--
<section class="hero">
<h1 class="hero-title"></h1>
<p class="hero-subtitle">
</p>
</section>
-->
<section class="portfolio" id="portfolio">
<h2 class="section-title"></h2>
<div id="projects-grid" class="projects-grid">
<!-- Los proyectos se cargarán aquí dinámicamente -->
</div>
</section>
</div>
</main>
<script src="script.js"></script>
</body>
</html>