-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblankpage.html
More file actions
45 lines (45 loc) 路 1.42 KB
/
Copy pathblankpage.html
File metadata and controls
45 lines (45 loc) 路 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Course Registration</title>
<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="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
body {
background: linear-gradient(to bottom, #c5c5c5, #000000);
color: white;
width: 300px; /* Adjust the width as needed */
min-height: 500px;
font-family: 'Montserrat', sans-serif;
}
.form-group {
margin-bottom: 10px;
}
.btn-add {
cursor: pointer;
color: #007bff;
}
.btn-remove{
transition: opacity 0.5s ease-in-out;
}
.container {
padding: 20px;
}
.input-container {
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container" style="display: inline;">
<img src="images/icon48.png" alt="icon" width="50px" height="50px">
<h1 style="display:contents; font-size: small;" class="mt-2">U-AUTOMATE</h1>
</div>
<div style="margin-top: 0%;padding-top: 0%;" class="container mt-4">
<h2 class="mb-4">Select Electives</h2>
</div>
<script src="popup.js"></script>
</body>
</html>