-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (28 loc) · 931 Bytes
/
options.html
File metadata and controls
32 lines (28 loc) · 931 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<meta charset="utf-8"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.center{
height: auto;
width: 500px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="center">
<h2>Odaberite smjer</h2>
<input type="radio" name="smjer" value="svi" checked> Sve
<input type="radio" name="smjer" value="racunarstvo"> Računarstvo
<input type="radio" name="smjer" value="menadzment"> Menadžment
<input type="radio" name="smjer" value="odrziviRazvoj"> Održivi razvoj
<div id="status"></div>
<br/>
<button class="btn btn-primary" id="save">Spremi</button>
<script src="options.js"></script>
</div>
</body>
</html>