-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
80 lines (72 loc) · 3.19 KB
/
contact.html
File metadata and controls
80 lines (72 loc) · 3.19 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>TaskBit</title>
<link rel="shortcut icon" type="image/png" href="icon.png"/>
<!--jquery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!--begin materialize-->
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/js/materialize.min.js"></script>
<!--end materialize-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!--my scripts and styles-->
<script src="layoutscript.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--div id="topbar">
<h1 class="btn-default togglemenu"><i class="material-icons material-spec-icon" title="Show navigation">menu</i></h1><a href="index.html">TaskBit</a>
<div id="titles">
<h1 class="newroutinebutton"><button class="btn btn-default">+</button></h1>
</div>
</div-->
<ul class="side-nav fixed" id="slide-out"">
<li class="center"><a href="index.html" style="color: black; text-decoration: none;">TaskBit</a></li>
<li><div class="divider"></div></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="help.html">Help</a></li>
<li><a href="changelog.html">Changelog</a></li>
<li><div class="divider"></div></li>
<li><a href="contact.html">Contact</a></li>
<li class="valign-wrapper">
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/seport/taskbit" data-style="mega" data-count-href="/seport/taskbit/stargazers" data-count-api="/repos/seport/taskbit#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star seport/taskbit on GitHub">Star</a>
</li>
<li>© Copyright 2016 TaskBit</li>
</ul>
<div class="navbar-fixed">
<nav class="nav-extended addtheme transparent">
<div class="nav-wrapper">
<a href="index.html" class="center brand-logo hide-on-large-only">TaskBit</a>
<a href="#" data-activates="slide-out" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="tabs tabs-fixed-width tabs-transparent" id="titles">
<li class="tab"><a href="#"></a></li>
</ul>
</div>
</nav>
</div>
<div id="content">
<h1>Contact</h1>
<hr>
<p id="addemail">If you have questions or suggestions please email me at </p>
<script>
var name = "taskbitapp";
var host = "gmail.com";
var linktext = name + "@" + host;
$("#addemail").append("<a href='" + "mail" + "to:" + name + "@" + host + "'>" + linktext + "</a>");
</script>
<!--h3>Color:</h3>
<input type="color" class="form-control" style="height: 100px;">
<button class="btn btn-default">Save</button-->
</div>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>