Skip to content

Instantly share code, notes, and snippets.

@ajbraus
Created August 29, 2019 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajbraus/832960f7517b73f1305c96a8c7d6afb6 to your computer and use it in GitHub Desktop.
Save ajbraus/832960f7517b73f1305c96a8c7d6afb6 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>HTML DEMO</title>
</head>
<body>
<header>
<h3>I'm the header</h3>
</header>
<main>
<details>
<summary>Sign Up</summary>
<small>hello</small>
</details>
<iframe src="new-site.html" width="200" height="150"></iframe>
<form class="" action="index.html" method="post">
<label style="margin-left: 40px;" for="">Email</label>
<input type="text" name="" placeholder="Email" />
<br />
<label for="">Password</label>
<input type="password" name="" />
<br />
<input type="checkbox" name="" value=""> Remember Me?
<br />
<label for="pet">Choose a Pet</label><br/>
<input type="radio" name="pet" value=""> Dog
<input type="radio" name="pet" value=""> Cat
<input type="radio" name="pet" value=""> Monkey
<br />
<select class="" name="">
<option value="cat">Cat</option>
<option value="dog">Dog</option>
<option value="monkey">Monkey</option>
</select>
<br />
<br />
<button>Save</button>
</form>
</main>
<footer>
I'm the footer
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment