-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionPage.html
More file actions
32 lines (25 loc) · 936 Bytes
/
FunctionPage.html
File metadata and controls
32 lines (25 loc) · 936 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Functionalities</title>
<link rel="stylesheet" href="ProjectStyle.css">
<script src="ProjectJS.js"></script>
</head>
<body>
<br>
<h1>Functionalities</h1>
<h3>Now let your life become easier with just the press of a button</h3>
<br>
<div class="inline">
<input type="button" class="btns" value="Generate an Email" onclick="email();"/>
<input type="button" class="btns" value="Spending Tracker" onclick="spendingTracker();"/>
</div>
<br>
<div class = "inline">
<input type="button" class="btns" value="Report Writer" onclick="reportWriter();"/>
<input type="button" class="btns" value="Time Converter" onclick="timeConverter();"/>
</div>
</body>
</html>