195 lines
3.6 KiB
Markdown
195 lines
3.6 KiB
Markdown
# Web
|
|
|
|
`html`
|
|
`HyperText Markup Language`
|
|
`css`
|
|
`Cascading Style Sheets`
|
|
`js`
|
|
|
|
|
|
|
|
## div
|
|
```html
|
|
<header></header>
|
|
<nav></nav>
|
|
<aside></aside>
|
|
<main></main>
|
|
```
|
|
|
|
|
|
<iframe alt="" src="" frameborder="0"></iframe>
|
|
## Sources
|
|
|
|
### Link
|
|
|
|
```html
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
|
|
|
|
<link type="text/css" rel="stylesheet" href="/main.css" />
|
|
|
|
<script src="/main.js"></script>
|
|
|
|
|
|
```
|
|
|
|
### Video
|
|
```html
|
|
<video alt=>
|
|
<source src="evento.mp4" type="video/mp4">
|
|
<source src="evento.mp4" type="video/webm">
|
|
</video>
|
|
```
|
|
|
|
### Audio
|
|
```html
|
|
<audio src=""></audio>
|
|
```
|
|
|
|
|
|
|
|
|
|
```html
|
|
<a href="" target="_blank" rel="noopener noreferrer"></a>
|
|
|
|
<a href="#" target="_blank" rel="noopener noreferrer"></a>
|
|
|
|
|
|
<img src="" alt="">
|
|
<hr>
|
|
<br>
|
|
|
|
<figure>
|
|
<img src="" alt="">
|
|
<figcaption></figcaption>
|
|
</figure>
|
|
|
|
|
|
<a href="" target="_blank" rel="noopener noreferrer"></a>
|
|
<dl>
|
|
<dt>HTML</dt>
|
|
<dd>Lenguaje de marcado para crear páginas web</dd>
|
|
|
|
<dt>CSS</dt>
|
|
<dd>Lenguaje para dar estilo a las páginas web</dd>
|
|
</dl>
|
|
|
|
<h1>Título Principal</h1>
|
|
<h2>Subtítulo</h2>
|
|
<h3>Sección</h3>
|
|
<h4>Subsección</h4>
|
|
<h5>Apartado</h5>
|
|
<h6>Subapartado</h6>
|
|
|
|
Formato de Texto
|
|
<strong>Texto importante</strong>
|
|
<em>Texto enfatizado</em>
|
|
<mark>Texto resaltado</mark>
|
|
<small>Texto pequeño</small>
|
|
<del>Texto eliminado</del>
|
|
<ins>Texto insertado</ins>
|
|
<sub>subíndice</sub>
|
|
<sup>superíndice</sup>
|
|
|
|
Enlaces y Navegación
|
|
<!-- Enlace externo -->
|
|
<a href="https://www.google.com">Ir a Google</a>
|
|
|
|
<!-- Enlace interno -->
|
|
<a href="contacto.html">Contacto</a>
|
|
|
|
<!-- Enlace a sección de la misma página -->
|
|
<a href="#seccion-importante">Ir a sección</a>
|
|
|
|
<!-- Enlace de correo -->
|
|
<a href="mailto:correo@ejemplo.com">Enviar correo</a>
|
|
|
|
<!-- Enlace de teléfono -->
|
|
<a href="tel:+5071234567">Llamar</a>
|
|
|
|
<i class="material-icons">cloud</i>
|
|
|
|
|
|
|
|
<a href="Your facebook link"><i class="fab fa-facebook"></i></a>
|
|
|
|
<a href="FB Link" class="fab fa-facebook"></a>
|
|
|
|
<span class="material-icons">home</span>
|
|
|
|
|
|
https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/link
|
|
|
|
|
|
<a href="https://example.com"><i class="fas fa-home"></i>Home</a>
|
|
|
|
|
|
|
|
<a href="https://example.com"><i class="fas fa-home"></i>Home</a>
|
|
|
|
|
|
https://stackoverflow.com/questions/68838248/how-do-you-add-a-link-inside-an-svg-image-file
|
|
|
|
https://www.w3schools.com/graphics/svg_hyperlinks.asp
|
|
```
|
|
|
|
(Noopener noreferrer)[https://stackoverflow.com/questions/79600136/when-adding-target-blank-to-a-html-link-is-it-still-necessary-to-add-rel-no]
|
|
|
|
|
|
|
|
|
|
<form action="/submit_form" method="post">
|
|
<label for="name">Name:</label><br>
|
|
<input type="text" id="name" name="name"><br>
|
|
<label for="email">Email:</label><br>
|
|
<input type="email" id="email" name="email"><br><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
|
|
|
|
<form action="">
|
|
<fieldset>
|
|
<legend>Ubicación</legend>
|
|
<label for="facultades">Facultades</label>
|
|
<input list="facultades" name="facultad">
|
|
<datalist id="facultades">
|
|
<option value="Ingeniería de Sistemas">
|
|
<option value="Ingeniería Civil">
|
|
<option value="Ingeniería Industrial">
|
|
</datalist>
|
|
<button type="submit">Buscar</button>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
|
|
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
|
|
|
|
<a href="#" target="_blank" rel="noopener noreferrer"></a>
|
|
|
|
|
|
|
|
|
|
---------------------------------------------
|
|
|
|
command:
|
|
taskkill /IM nginx.exe /F
|
|
|
|
command:
|
|
taskkill /IM tor.exe /F
|
|
|
|
---------------------------------------------
|
|
|
|
|
|
Check url:
|
|
|
|
hidden_Service = Hotname = fngggljygpsc653xd22hyyvubyxeubymaomjqjwnd5tjo64mwo73fsad.onion
|
|
|
|
|
|
|
|
|