-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (156 loc) · 4.46 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!--
Authors: Hassan and Eren
Page: Index.html
Date: 2/5/2025
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CS-378H-N</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js"></script>
<!--
This part uses CSS to change color
-->
<style>
h1,
h2,
p {
color: #3a5a40;
}
</style>
</head>
<body style="background-color: antiquewhite">
<h1 style="display: flex; justify-content: center">Syllabi Reader</h1>
<div style="display: flex; justify-content: center">
<img src="pictures/syllabus.webp" />
</div>
<h1 style="display: flex; justify-content: center; padding-top: 20px">
Our Mission
</h1>
<p
style="
word-wrap: break-word;
font-size: xx-large;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
display: flex;
justify-content: center;
text-align: center;
"
>
We are planning to develop SyllabiReader. an app where you can import your
syllabi and work/school schedules to your outlook calendar. This app will
scan your deadlines, exam dates and prioritize them for you to help you
get organized. Based on the event importance, it can set reminders, send
notifications through outlook calender and make sure you don't forget. For
further details, please check the Documentation.
</p>
<div>
<h2 style="display: flex; justify-content: center">
Screenshots from/about our app
</h2>
</div>
<!-- Container for the image gallery -->
<div class="container">
<!-- Full-width images with number text -->
<div class="mySlides">
<div class="numbertext">1 / 5</div>
<img src="pictures/prototype.webp" width="600" height="500" />
</div>
<div class="mySlides">
<div class="numbertext">2 / 5</div>
<img src="pictures/page1.webp" width="300" height="500" />
</div>
<div class="mySlides">
<div class="numbertext">3 / 5</div>
<img src="pictures/page2.webp" width="300" height="500" />
</div>
<div class="mySlides">
<div class="numbertext">4 / 5</div>
<img src="pictures/page3.webp" width="300" height="500" />
</div>
<div class="mySlides">
<div class="numbertext">5 / 5</div>
<img src="pictures/page4.webp" width="300" height="500" />
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<!-- Image text -->
<div class="caption-container">
<p id="caption" class="caption"></p>
</div>
<!-- Thumbnail images -->
<div class="row">
<div class="column">
<img
class="demo cursor"
src="pictures/prototype.webp"
width="220"
height="300"
onclick="currentSlide(1)"
alt="Prototype"
/>
</div>
<div class="column">
<img
class="demo cursor"
src="pictures/page1.webp"
width="220"
height="300"
onclick="currentSlide(2)"
alt="Login Page"
/>
</div>
<div class="column">
<img
class="demo cursor"
src="pictures/page2.webp"
width="220"
height="300"
onclick="currentSlide(3)"
alt="Upload Page"
/>
</div>
<div class="column">
<img
class="demo cursor"
src="pictures/page3.webp"
width="220"
height="300"
onclick="currentSlide(4)"
alt="Homepage"
/>
</div>
<div class="column">
<img
class="demo cursor"
src="pictures/page4.webp"
width="220"
height="300"
onclick="currentSlide(5)"
alt="Deadline Alert"
/>
</div>
</div>
</div>
<a
href="aboutus.html"
style="
display: flex;
justify-self: center;
font-size: xx-large;
font-weight: 800;
padding-top: 50px;
padding-bottom: 20px;
text-decoration: none;
color: #588157;
"
>Meet our team</a
>
</body>
</html>