Created
August 29, 2019 18:45
-
-
Save ajbraus/832960f7517b73f1305c96a8c7d6afb6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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