-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
105 lines (92 loc) · 4.12 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Materialize -->
<link type="text/css" rel="stylesheet" href="./css/materialize.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link type="text/css" rel="stylesheet" href="./css/styles.css">
<link type="text/css" rel="stylesheet" href="./css/fonts.css">
<link type="text/css" rel="stylesheet" href="./css/icons.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Contact</title>
<meta name="description" content="Contact information for Umlaut Labs.">
<script src="./js/jquery.min.js"></script>
</head>
<body id="body" class="teal-grad">
<div class="row">
<nav style="padding-top: 2%; padding-left: 3%; padding-right: 3%;">
<div class="container-wide">
<div class="row">
<div class="col m3">
<a href="/" class="logo" style="font-weight: 700; font-size: 32px;">Umlaut Labs</a>
</div>
<div class="col m9">
<div class="right">
<ul>
<li><a href="./products.html" style="font-size: 18px; font-weight: 300;">Products</a></li>
<li><a href="./team.html" style="font-size: 18px; font-weight: 300;">Team</a></li>
<li><a href="./contact.html" style="font-size: 18px; font-weight: 300;">Contact Us</a>
</li>
<li><a href="https://play.google.com/store/apps/dev?id=6832025168578241539"
class="btn green nav-sign-up waves-effect waves-light hoverable"
style="border-radius: 100000000000px; font-size: 14px; font-weight: 400;"><i
class="material-icons-round left">shop</i>Play Store</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="row" style="padding-top: 5%; padding-bottom: 6%;">
<div class="col s8 m3 offset-m1 offset-s2">
<img src="./logo.jpg" width="100%" style="border-radius: 48px;"/>
</div>
<div class="col s8 m6 offset-m1 offset-s2">
<h1 style="color: #000; font-weight: 500;">Contact Us:</h1>
<ul>
<li>
<h5 style="color: #000; font-weight: 300;"><i class="material-icons-round left">email</i><a
href="mailto:soumitra.shewale.dev@gmail.com" style="color: #000;">soumitra.shewale.dev@gmail.com</a></h5>
</li>
</ul>
<br>
</div>
</div>
<footer class="page-footer teal lighten-2">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Info</h5>
<p class="grey-text text-lighten-4">Umlaut Labs is NOT a registered company or trademark.
The logo cannot be licensed as it contains basic shapes and letters. So, the logo is under
Public Domain.</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="./products.html">Products</a></li>
<li><a class="grey-text text-lighten-3" href="./team.html">Team</a></li>
<li><a class="grey-text text-lighten-3" href="./contact.html">Contact Us</a></li>
<li><a class="grey-text text-lighten-3" href="./legal.html">Legal</a></li>
<li><a class="grey-text text-lighten-3" href="https://github.com/soumitradev">Github</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
This website is <a href="https://github.com/UmlautLabs/umlautlabs.github.io/" style="color: #444;">Open Source</a>
and is licensed under the <a
href="https://github.com/UmlautLabs/umlautlabs.github.io/blob/master/LICENSE" style="color: #444;">MIT
License</a>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="./js/materialize.min.js"></script>
</body>
</html>