This repository was archived by the owner on Sep 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 1.92 KB
/
index.html
File metadata and controls
75 lines (73 loc) · 1.92 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
<!DOCTYPE html>
<html lang="es">
<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>Net JHOM's Portafolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div id="main_nav">
<nav>
<ul>
<li><a href="https://netjhoms.com/">Nosotros</a></li>
<li class="menu">
<a href="https://netjhoms.com/componentes">Componentes</a>
</li>
<li class="menu"><a href="https://netjhoms.com/internet">Internet</a></li>
<li class="menu"><a href="https://netjhoms.com/software">Software</a></li>
<li class="menu"><a href="/">Portafolio</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h1><label>Proyect</label><label>JHOM's</label></h1>
<section class="imagen">
<img src="./assets/cover.png" alt="Net JHOM's founders" />
</section>
<section class="proyectos">
<article>
<h1>JHOMstaurant</h1>
<p>Conoce el menú de un restaurante mediante este sitio</p>
<a
href="https://netjhoms.github.io/JHOMstaurant/"
target="_blank"
>
Ver sitio
</a></br>
<img src="./assets/jhomstaurant.png" />
</article>
<article>
<h1>SpaceJHOMs</h1>
<p>
Conoce las diferentes misiones que ha lanzado Space X
</p>
<a
href="https://netjhoms.github.io/SpaceJHOMs/"
target="_blank"
>
Ver sitio
</a> </br>
<img src="./assets/spacejhoms.png" />
</article>
<article>
<h1>WeatherJHOMs</h1>
<p>
Con esta aplicación puedes conocer el clima de tu
ubicación
</p>
<a
href="https://netjhoms.github.io/WeatherJHOMs/"
target="_blank"
>
Ver sitio
</a></br>
<img src="./assets/weatherjhoms.png" />
</article>
</section>
</main>
</body>
</html>