-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
38 lines (37 loc) · 1.02 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
<html>
<head>
<title>Options for Bookmark reminder </title>
<script type="text/javascript" src="options.js"></script>
<style>
.container{
width:60%;
height: 240px;
margin: auto auto;
background-color: #E6E6E6;
-border-radius: 5px;
padding: 5px 5px 5px 5px;
}
p,h2,h3{
text-align: center;
}
body{
font-family: sans-serif;
background-color: #BDBDBD
}
</style>
</head>
<body>
<div class="container">
<br />
<h2>You current option is: <span id = "current"></span></h2>
<h3>Change your preferred option for saving the reminder</h3>
<div style="text-align:center;">
<select id="preference">
<option value="gCal">Google Calendar</option>
<option value="iCal">iCalendar/Outlook</option>
</select>
<button>Save</button>
</div>
</div>
</body>
</html>