Skip to content

Instantly share code, notes, and snippets.

@ImBIOS
Created March 14, 2022 23:57
Show Gist options
  • Save ImBIOS/d62a85db69788eb609453577f8858315 to your computer and use it in GitHub Desktop.
Save ImBIOS/d62a85db69788eb609453577f8858315 to your computer and use it in GitHub Desktop.
Source code of my label tag video
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #d3d3d3;
}
</style>
</head>
<body>
<form>
<label for="name"> Name: </label>
<input type="text" id="name" />
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment