Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>

<html>

<head>

<title>My Second Web Page</title>

</head>

<body>

<h1>Hello, World!</h1>

<p>This is a simple web page.</p>

<a href="https://www.example.com">Visit Example.com</a>

<br>

<br>

<form>

<label for="name">Name:</label>

<input type="text" id="name" name="name">

<br>

<br>

<label for="email">Email:</label>

<input type="email" id="email" name="email">

<br>

<br>

<input type="submit" value="Submit">

</form>

</body>

</html>

You might also like