-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
30 lines (30 loc) · 1.11 KB
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<title>Semantic UI : Form Example</title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="../_library/semantic-ui/dist/semantic.min.js"></script>
<link rel="stylesheet" type="text/css" href="../_library/semantic-ui/dist/semantic.min.css">
<link rel="stylesheet" type="text/css" href="../_css/custom.css">
</head>
<body>
<div class="ui container">
<form class="ui form">
<div class="field">
<label>First Name</label>
<input type="text" name="first-name" placeholder="First Name">
</div>
<div class="field">
<label>Last Name</label>
<input type="text" name="last-name" placeholder="Last Name">
</div>
<div class="field">
<div class="ui checkbox">
<input type="checkbox" tabindex="0" class="hidden">
<label>I agree to the Terms and Conditions</label>
</div>
</div>
<button class="ui button" type="submit">Submit</button>
</form>
</div>
</body>
</html>