Compare commits

...

2 Commits

Author SHA1 Message Date
76cf9660ee Version inicial del TP 2026-04-20 21:13:42 -03:00
2a5e6d5e31 agrego .gitignore 2026-04-20 21:12:52 -03:00
3 changed files with 58 additions and 0 deletions

19
.gitignore vendored Normal file
View 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
View File

39
trabajo.html Normal file
View 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>