Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Forms: forms.

html

<!doctype html>

<html>

<head>

<title>My First Website</title>

<meta charset="utf-8" />

<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

<meta name="viewport" content="width=device-width, initial-scale=1" />

<meta name="viewport" content="width=device-width, initial-scale=1" />

<meta name="description" content="A jouney of a thousand miles begins with a


single step." />

</head>

<body>

<h1>My First Website</h1>

<input type="text" placeholder="Type something here..." />

<br />

<textarea>Longer text goes here...</textarea>


<br />

<select>

<option>Choose an option...</option>

<option value="1">1</option>

<option value="2">2</option>

</select>

<br>

<input type="checkbox" /> Click me!

<br>

<input type="radio" name="options" /> Option 1

<br>

<input type="radio" name="options" /> Option 2

<br>

<input type="submit" value="Click Me!">

</body>

</html>

You might also like