This repository was archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprice.html
More file actions
executable file
·130 lines (103 loc) · 5.03 KB
/
Copy pathprice.html
File metadata and controls
executable file
·130 lines (103 loc) · 5.03 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="assets/logo/favicon.png" />
<link rel="manifest" href="manifest.json">
<title>Presupuestos</title>
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/nav.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/pages/development.css">
<link rel="stylesheet" href="styles/pages/about.css">
<link rel="stylesheet" href="styles/viewTransitions.css">
<script src="scripts/events.js" defer></script>
<script src="scripts/viewTransition.js" defer></script>
</head>
<body>
<header class="header-container">
<div class="header-content">
<a href="./" class="header-home-button">
<img class="header-logo-img" src="assets/logo/logo.webp" alt="Rocket Code">
<h2 class="header-title">Rocket Code</h2>
</a>
<img src="assets/icons/menu-2.svg" class="menu-button-icon" alt="menu-icon">
</div>
</header>
<nav class="nav-container">
<a class="nav-item" href="./">
<img src="assets/icons/users.svg" class="nav-item-icon" alt="users-icon">
Sobre Nosotros
</a>
<a class="nav-item" href="clients">
<img src="assets/icons/coins.svg" class="nav-item-icon" alt="coins-icon">
Nuestros Clientes
</a>
<a class="nav-item" href="software">
<img src="assets/icons/code.svg" class="nav-item-icon" alt="code-icon">
Solución de Software
</a>
<a class="nav-item" href="network">
<img src="assets/icons/world.svg" class="nav-item-icon" alt="world-icon">
Solución de Red
</a>
<a class="nav-item" href="office">
<img src="assets/icons/table.svg" class="nav-item-icon" alt="table-icon">
Solución Ofimática
</a>
<a class="nav-item" href="price">
<img src="assets/icons/coin.svg" class="nav-item-icon" alt="coin-icon">
Presupuesto
</a>
<a class="nav-item" href="development">
<img src="assets/icons/settings.svg" class="nav-item-icon" alt="settings-icon">
Desarrollo
</a>
</nav>
<main class="main-container">
<h1 class="page-title">
Presupuesto
</h1>
<p>
Aquí se muestra el costo que tendrá el trabajo completo llevado a cabo por <bi>Rocket Code</bi>.
Este presupuesto no solo toma en cuenta los entregables desarrollados por el equipo, sino también el costo de los equipos
necesarios para implementar todas las soluciones diseñadas, el equipo de red a utilizar y
algunas utilidades de software necesarias para garantizar la seguridad de los equipos.
</p>
<a class="download-button" href="https://drive.google.com/uc?export=download&id=1ni0wfyHxuRvICS7UX1-PL78zkJFsZUqz">
<img src="assets/icons/cloud-download.svg" class="nav-item-icon" alt="cloud-download">
Descargar archivo
</a>
<a target="_blank" rel="noopener noreferrer" class="download-button" href="https://drive.google.com/file/d/1ni0wfyHxuRvICS7UX1-PL78zkJFsZUqz/view">
<img src="assets/icons/eye-star.svg" class="nav-item-icon" alt="eye-star">
Abrir archivo
</a>
<iframe class="iframe-container" src="https://drive.google.com/file/d/1ni0wfyHxuRvICS7UX1-PL78zkJFsZUqz/preview" frameborder="0" height="500px"></iframe>
</main>
<footer class="footer-container">
<div class="footer-first">
<a href="https://www.instagram.com/utj_oficial/" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-instagram.svg" alt="icon-instagram">
</a>
<a href="https://www.facebook.com/utj.universidad" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-facebook.svg" alt="icon-facebook">
</a>
<a href="https://twitter.com/utj_oficial" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-twitter.svg" alt="icon-twitter">
</a>
<a href="https://www.youtube.com/@OFICIALUTJ" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-youtube.svg" alt="icon-youtube">
</a>
<a href="https://github.com/IsmaCortGtz/rocket-code/" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-github.svg" alt="icon-github">
</a>
</div>
<div class="footer-second">
2024. Rocket Code
</div>
</footer>
</body>
</html>