Course project
Mi proyecto del curso: Introducción al Desarrollo Web Responsive con HTML y CSS
by Mauro Gabriel Sotelo @maurogsotelo
- 41
- 0
- 0
from IPython.display import HTML
html_code = """
<!DOCTYPE html>
<html>
<head>
<title>Mi Landing Page con Formulario</title>
<style>
body {
background-color: #FF0000; /* Rojo */
}
</style>
</head>
<body>
<h1>¡Contáctanos!</h1>
<form>
<label for="fname">Nombre:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Apellido:</label><br>
<input type="text" id="lname" name="lname"><br>
<label for="phone">Teléfono:</label><br>
<input type="tel" id="phone" name="phone"><br><br>
<input type="submit" value="Enviar">
</form>
</body>
</html>
"""
HTML(html_code)

0 comments
Log in or join for Free to comment