Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
Last active February 8, 2017 11:43
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 CodeBrauer/38d41258d215ea13b6d3103f6df77725 to your computer and use it in GitHub Desktop.
Save CodeBrauer/38d41258d215ea13b6d3103f6df77725 to your computer and use it in GitHub Desktop.
Wing input types test #tags: demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/wingcss/0.1.4/wing.min.css">
</head>
<body>
<div class="container">
<h1>Welcome to my demo!</h1>
<input type="text" placeholder="text">
<input type="password" placeholder="password">
<input type="email" placeholder="email">
<input type="number" placeholder="number">
<input type="search" placeholder="search">
<input type="url" placeholder="url">
<input type="tel" placeholder="tel">
<input type="datetime" placeholder="datetime">
<input type="color" placeholder="color">
<input type="date" placeholder="date">
<input type="submit" value="Submit">
<hr>
<label for="radio"><input name="foo" type="radio" id="radio"> Cool</label><br>
<label for="radio"><input name="foo" type="radio" id="radio"> Not so cool</label><br>
<label for="checkbox"><input type="checkbox" id="checkbox"> I've read something</label><br>
<input type="range">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment