-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
107 lines (94 loc) · 3.42 KB
/
popup.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<!-- Import Inter font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<section class="everything">
<div class="container">
<div class="header-area">
<h1 class="logo m0p0" style="font-weight: bold">automeet</h1>
<h2 class="upcoming" style="margin-top: 2px">TUESDAY, 10:30 AM</h2>
</div>
<section class="schedule" style="margin-top: 80px">
<div class="schedule-item disabled">
<h3 class="subject">Computer Organization and Architecture</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item disabled">
<h3 class="subject">Graph Theory</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item now" id="dbms">
<h3 class="subject">Database Management System</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item">
<h3 class="subject">Minors - Artificial Intelligence</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item">
<h3 class="subject">Operating System</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item">
<h3 class="subject">Constitution of India</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item">
<h3 class="subject">Constitution of India</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
<div class="schedule-item">
<h3 class="subject">Constitution of India</h3>
<p class="py-0 my-0">
9.30 - 10.30 <b> ·</b> meet.google.com/wrx
</p>
</div>
</section>
<div class="btn-container">
<a href="customize.html" class="custom-link-btn"
>Schedule a meeting for later</a
>
</div>
<!-- <form name="submit-to-google-sheet" class="mail">
<input
class="input-mail"
placeholder="Enter custom link here"
name="email"
type="email"
required
/>
<button type="submit" class="btn-mail" id="submit-button">
<img
src="https://d33wubrfki0l68.cloudfront.net/6d5750d76af6814ac556786fd18ab2bfdb4e7782/06a93/images/arrow.svg"
alt=""
class="tick"
id="btn-icon"
/>
</button>
</form> -->
</div>
</section>
<script src="assets/input.js"></script>
</body>
</html>