-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
65 lines (60 loc) · 2.29 KB
/
options.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap-switch.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.0/css/bulma.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap-switch.min.js"></script>
<script src="js/options.js"></script>
<script src="js/TexasFirst.js"></script>
<style type="text/css">
body {
margin: 30px;
white-space: nowrap;
}
a {
color:inherit;
}
a:hover {
color: initial;
}
.button.is-info {
background-color: #337ab7;
}
</style>
<title>Texas First</title>
</head>
<body>
<div>
<h1 class="h1">Texas First?</h1>
<br>
</div>
<div style="margin: 0px 10px 10px 10px;">
<div style="float: left; margin-right: 10px;">
<input type="checkbox" name="texasCheckName" id="texasCheckID" data-on-text="yes" data-off-text="no" data-size="large" checked>
</div>
<div style="margin-right: 10px; margin-left: 20px;">
<a class="button is-info" target="_blank" href="http://online-code-generator.com/usa-state-html-select-list-custom-formats.php">Test me</a>
</div>
</div>
<br>
<div style="margin: 0px 10px 10px 10px;">
<div style="float: left; margin-left: 15px;">
<a href="https://github.com/qirh/TexasFirst" target="_blank">
<i class="fa fa-github fa-3x" aria-hidden="true"></i>
</a>
<a style="margin-left: 15px;" href="https://saleh.alghusson.com" target="_blank">
<i class="fa fa-globe fa-3x" aria-hidden="true"></i>
</a>
<a style="margin-left: 15px;" href="mailto:[email protected]" target="_blank">
<i class="fa fa-envelope fa-3x" aria-hidden="true"></i>
</a>
</div>
</div>
<br>
</body>
</html>