1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/project-x/index.html
Antoine Boulanger ec67b2d4d6 forms
2014-10-02 12:56:32 -04:00

36 lines
1.0 KiB
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Project-x</title>
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="assets/styles/dist/main.css">
</head>
<body>
<input class="input" type="text">
<br><br>
<label class="checkbox">
<input class="checkbox__input" type="checkbox">
<span class="checkbox__check"></span>
</label>
<br><br>
<label class="select">
<select class="select__input" name="" id="">
<option value="">sdfds</option>
<option value="">sdf</option>
<option value="">sdfds</option>
</select>
</label>
<script src="assets/scripts/dist/main.js"></script>
</body>
</html>