-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.71 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.71 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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Head: Metadata and Resources -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java Tutor - Bienvenido</title>
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="src/css/index.css">
</head>
<body>
<!-- Hero Section -->
<main class="hero-container">
<!-- Overlay for background effect -->
<div class="hero-overlay"></div>
<!-- Navigation Bar -->
<nav class="hero-nav">
<a href="index.html" class="logo">
<img src="src/assets/icons/icon.gif" alt="Logo" class="logo-icon">
<span>Java Tutor</span>
</a>
<div class="nav-buttons">
<a href="src/pages/signin.html" class="btn btn-nav-secondary">Iniciar Sesión</a>
<a href="src/pages/signup.html" class="btn btn-nav-primary">Registrarse</a>
</div>
</nav>
<!-- Hero Content -->
<div class="hero-content">
<h1 id="hero-title">
<span>Bienvenido</span>
<span>a Java Tutor.</span>
</h1>
<div class="title-divider"></div>
<p id="hero-subtitle">
Tu dashboard personal para seguir tu progreso en el curso de Java.
</p>
</div>
</main>
<script src="src/js/index.js"></script>
</body>
</html>