-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
56 lines (56 loc) · 2.28 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cornell Notes Creator</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="resources/home.css">
</head>
<body>
<noscript>
<div class="error-cont">
<h1>This site requires JavaScript</h1>
<p>Please make sure you are using a modern browser and have JavaScript enabled.</p>
</div>
</noscript>
<header>
<h1>We're making Cornell Notes an easy solution to note taking!</h1>
</header>
<div class="mainwrap">
<main id="about">
<section class="header">
<h1>Cornell Notes Creation - Made Simple!</h1>
</section>
<div id="mainwrapper">
<section class="main" id="main0">
<div class="mainidea">
<textarea readonly>Revolutionzing note taking</textarea>
</div>
<div class="notes">
<textarea readonly>Cornell Notes are proven to make note-taking more effective. Actually creating them can be a nuisance, however!
This tool has been created by students, for students, with the simple goal of making Cornell Notes easy to create, edit, and view!</textarea>
</div>
</section>
<section class="main" id="main1">
<div class="mainidea">
<textarea readonly>Leave the word processors behind</textarea>
</div>
<div class="notes">
<textarea readonly>The days of taking ages to format tables, resize columns and rows, type some notes, resize again, and repeat are gone!
We've formatted everything for you and given you simple controls to get the most out of your notes!</textarea>
</div>
</section>
<section class="main" id="main2">
<div class="mainidea">
<textarea readonly>Good bye glaring white!</textarea>
</div>
<div class="notes">
<textarea readonly>For the first time ever, your web-based note creator has a built-in dark mode! Click the button on the control bar to easily fit into a dark classroom!
Or maybe you're just a dark mode enthusiast; we won't judge!</textarea>
</div>
</section>
</div>
<section class="summary">
<textarea placeholder="Summary..." id="summary" oninput="resizeSummary()" name="summary"></textarea>
</section>
</main>
</div>
</body>
</html>