Skip to content

Instantly share code, notes, and snippets.

@natafaye
Created July 13, 2022 03:55
Show Gist options
  • Select an option

  • Save natafaye/6d4372619f92e6fee98d02785454db12 to your computer and use it in GitHub Desktop.

Select an option

Save natafaye/6d4372619f92e6fee98d02785454db12 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>THIS GOES IN THE TOP BAR</title>
</head>
<body>
<!-- <div>
This is a heading
</div>
<p>
fdsfds
</p>
<div>
Hi there
<ul>
<li>fdsfdsfds</li>
<li>fdsfds</li>
</ul>
</div>
<div>div</div>
<div>div</div>
<div>div</div>
<span>span</span>
<span>span</span>
<span>span</span>
<a href="something.html">Something Link</a>
<div>
<img src="/images/chair.jpg" width="100"/>
</div> -->
<form>
<div>
<label for="name-input">Name</label>
<input type="text" id="name-input" name="name"/>
</div>
<div>
<label for="spam-checkbox">Do you want spam?</label>
<input type="checkbox" id="spam-checkbox" name="wants-spam"/>
</div>
<div>
<label>Where do you want to eat</label>
<input type="checkbox" id="mexican-checkbox" value="mexican" name="where-to-eat"/>
<label for="mexican-checkbox">Mexican</label>
<input type="checkbox" id="chinese-checkbox" value="chinese" name="where-to-eat"/>
<label for="chinese-checkbox">Chinese</label>
</div>
<div>
<label>Where do you want to eat</label>
<input type="radio" id="mexican-radio" value="mexican" name="where-to-eat" disabled/>
<label for="mexican-radio">Mexican</label>
<input type="radio" id="chinese-radio" value="chinese" name="where-to-eat"/>
<label for="chinese-radio">Chinese</label>
</div>
</form>
<script src="building.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment