Created
March 14, 2022 23:57
-
-
Save ImBIOS/d62a85db69788eb609453577f8858315 to your computer and use it in GitHub Desktop.
Source code of my label tag video
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
<!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