generated from marquez.juan/Ejercicio-inicial--git-y-HTML
Compare commits
2 Commits
db4d1f4cfa
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 76cf9660ee | |||
| 2a5e6d5e31 |
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
|
||||||
|
# Entorno virtual de Python
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
|
|
||||||
|
# Variables de entorno y configuración sensible
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Sistemas operativos
|
||||||
|
.DS_Store # macOS
|
||||||
|
Thumbs.db # Windows
|
||||||
|
|
||||||
|
# Node.js (por si se utiliza npm en algún momento)
|
||||||
|
node_modules/
|
||||||
0
estilos.css
Normal file
0
estilos.css
Normal file
39
trabajo.html
Normal file
39
trabajo.html
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Netflix</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="estilos.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header align="center" style="font-weight: bold;">Netflix</header>
|
||||||
|
<h1 align="center" style="font-size: 35px;">Suscribirse a Netflix</h1>
|
||||||
|
<h2 align="center" style="font-size: 25px;">Películas y series ilimitadas y mucho más</h2>
|
||||||
|
<div>
|
||||||
|
<p style="color: red;"> Selecciona tu plan ideal</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<table border="5" align="center" height="120" width="800" cellspacing="10" cellpadding="20">
|
||||||
|
<tr>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Basico<br>720p</font></td>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Estandar<br>1080p</font></td>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Premium<br>4K + HDR</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Precio mensual<br>ARS 8,999</font></td>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Precio mensual<br>ARS 14,999</font></td>
|
||||||
|
<td colspan="1" align="left"><font face="arial">Precio mensual<br>ARS 19,999</font></td>
|
||||||
|
</tr>
|
||||||
|
<table border="1">
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<tr align="center">
|
||||||
|
<td align="center">Cuarta celda</td>
|
||||||
|
<td>Quinta celda</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user