-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sitio Multilenguaje</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="#"><img src="img/logo.png" alt="Logotipo"></a>
</div>
<div class="lang-menu">
<div class="selected-lang translate" id="es">
Español
</div>
<ul>
<li><a href="#" class="translate en" id="en">English</a></li>
<li><a href="#" class="translate es" id="es">Spanish</a></li>
<li><a href="#" class="translate fr" id="fr">French</a></li>
</ul>
</div>
</nav>
</header>
<!-- <button class="translate" id="es">Español</button>
<button class="translate" id="en">English</button>
<button class="translate" id="fr">Francés</button> -->
<br><br>
<p class="lang" key="test1">Esto es un texto de prueba</p>
<p class="lang" key="test2">Este parrafo esta en Español</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>