-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
186 lines (168 loc) · 7.09 KB
/
index.html
File metadata and controls
186 lines (168 loc) · 7.09 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<title>My materialize site</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<base target="_blank" />
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
<< <!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
<script src="js/init.js"></script>
<!-- nav -->
<nav class="grey darken-3" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="index.html" class="brand-logo"><i class="material-icons">home</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="note.html"><i class="material-icons">note</i>Notes</a></li>
<li><a href="cal.html"><i class="material-icons">today</i>Events</a></li>
<li><a href="task.html"><i class="material-icons">done</i>tasks</a></li>
<li><a href="mail.html"><i class="material-icons">email</i>mail</a></li>
<li><a href="storage.html"><i class="material-icons">storage</i>Data storage</a></li>
<li><a href="sample_index.html"><i class="material-icons">build</i>Sample</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="index.html">Home</a><a href="cal.html">Event</a>
<a href="task.html">task</a></li>
<li><a href="task.html">mail</a></li>
<li><a href="storage.html">Data storage</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container"> <br>
<h1 class="header center orange-text">Idea</h1>
<div class="row center">
<h5 class="header col s12 light">From an idea to a data store</h5>
<table>
<tr>
<th>Have an Idea?</th><th>Van egy ötleted?</th>
</tr>
<tr>
<td>Write a title and Description -> is a <b>Note</b><br>
Want to send it or post it/ Share it?<br>
It's an <b>event</b>? Add a date (and time), and location<br>
want to just remind or need some action ? It's a <b>task</b>.<br>
Want to categorize and/or Tag it?<br>
Want to give some additional information ?<br>
Want to Save all data ? It's a spreadsheet<br>
Want to connect data by time/person/place/category/tag? It's a database<br>
Want to sync between devices?<br>
Want to do all even offline to?<br></td>
<td>Adj neki címet és írj róla pár sort. Ez egy <b>jegyzet</b><br>
Szeretnéd közzétenni vagy megosztani? Adj hozzá egy dátumot ez egy <b>esemény</b>.<br>
Valami teendő is kapcsolódik hozzá? Ez egy <b>feladat</b>.
További információkat adnál hozzá? <br>Az egészet egyben szeretnéd elmenteni? Ez egy <b>táblázat</b>.<br>
Az adatokat szeretnéd összefűzni idő, személy, hely, vagy téma szerint? Ez egy<b>adatbázis</b>.<br>
Szeretnéd egyszerre több eszközön használni? Jó lenne offline is elérni és szerkeszteni? </td>
</tr>
</table>
</div>
<div class="row center"> <a href="http://materializecss.com/getting-started.html" id="download-button" class="btn-large waves-effect waves-light orange">Get Started</a>
</div>
</div>
</div>
<div class="container">
<div class="section"><!-- Icon Section -->
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">addnoteadd</i></h2>
<h5 class="center">Start here</h5>
<p class="light center">The first thing if you want to save something to later is give it a short title (required) and description here</p>
<form class="col s12" action="" method="GET" id="new-task-form">
<div class="row">
<div class="input-field col s4" >
<input type="text" id="new-task-name" class="task-name"
required="required" placeholder="Title" />
</div>
<div class="input-field col s6" >
<textarea id="description" class="materialize-textarea" ></textarea>
<label for="textarea1">description</label>
</div>
<a class="waves-effect waves-light btn inline"><i class="material-icons left">addnote</i></a>
</div>
</form>
</div>
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">addeventadd</i></h2>
<h5 class="center">Events</h5>
<p class="light center">If your idea connected to a date, is a calendar event</p>
<form class="col s12" action="" method="GET" id="new-date-form">
<div class="row">
<div class="input-field col s7" >
<input type="date" class="datepicker" id="StartDate" placeholder="Start date"/>
</div>
<div class="input-field col s3" >
<input type="time" class="timepicker" id="StartTime" placeholder="Start time"/>
<label for="StartTime">Set Start time</label>
</div>
<div class="row">
<div class="input-field col s7" >
<input type="date" class="datepicker" id="EndDate" placeholder="End date"/>
</div>
<div class="input-field col s3" >
<input type="time" class="timepicker" id="EndTime" placeholder="End time"/>
<label for="EndTime">Set End time</label>
</div>
<a class="waves-effect waves-light btn"><i class="material-icons left">addevent</i></a>
</div>
</form>
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
<h5 class="center">Easy to work with</h5>
<p class="light">We have provided detailed documentation
as well as specific code examples to help new users get started. We are
also always open to feedback and can answer any questions a user may
have about Materialize.</p>
</div>
</div>
</div>
<br>
<br>
<div class="section"> </div>
</div>
<footer class="page-footer orange"> </footer>
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Company Bio</h5>
<p class="grey-text text-lighten-4">We are a team of
college students working on this project like it's our full time job.
Any amount would help support and continue development on this project
and is greatly appreciated.</p>
</div>
<div class="col l3 s12">
<h5 class="white-text">Settings</h5>
<ul>
<li><a class="white-text" href="#%21">Link 1</a></li>
<li><a class="white-text" href="#%21">Link 2</a></li>
<li><a class="white-text" href="#%21">Link 3</a></li>
<li><a class="white-text" href="#%21">Link 4</a></li>
</ul>
</div>
<div class="col l3 s12">
<h5 class="white-text">Connect</h5>
<ul>
<li><a class="white-text" href="#%21">Link 1</a></li>
<li><a class="white-text" href="#%21">Link 2</a></li>
<li><a class="white-text" href="#%21">Link 3</a></li>
<li><a class="white-text" href="#%21">Link 4</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container"> Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a> </div>
</div>
</body></html>