-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
27 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="options.css">
</head>
<body>
<img id="result" class="logo" />
<h2 class="title">Browser Buddy</h2>
<div class="options">
<div class="option_line"><p class="option_text">Change Size (In Percent): </p><input type="textarea" id="size"></input></div>
<div class="option_line"><p class="option_text">Upload Custom Image: </p><input type="file" id="upload_photo"></input></div>
</div>
<div class="theme_option">
<input type="radio" id="light" name="theme">
<input type="radio" id="dark" name="theme">
<label for="light">Light Mode</label>
<label for="dark">Dark Mode</label>
</div>
</body>
<script src="options.js"></script>
</html>