-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
61 lines (56 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Mateusz Konieczny</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.svg">
</head>
<body>
<div id="main_content_wrap" class="outer">
<nav class="main-nav">
<ul id="main-nav-list">
<li>
<a href="index.html">
<div>
Home
</div>
</a>
</li>
<li>
<a href="articles.html">
<div>
Articles
</div>
</a>
</li>
<li>
<a href="recommendations.html">
<div>
Recommendations
</div>
</a>
</li>
<li>
<a href="contact.html" class="active">
<div>
Contact
</div>
</a>
</li>
</ul>
</nav>
<section id="main_content" class="inner">
<h1>Contact</h1>
<p>Just send mail to <a href="mailto:[email protected]">[email protected]</a></p>
<p>I would be happy to receive reports of mistakes, typos, unclear text, missing explanations etc. on this website. If you prefer - it is possible also to report it on the <a href="https://github.com/matkoniecz/mapsaregreat.com/issues">issue tracker</a>.</p>
<p>Thanks to <a href="feedback.html">all who reported issues and possible improvements!</a>
<p>I can consult on this topics, please <a href="contact.html">contact me</a> to discuss details.</p>
<p>If you have general OpenStreetMap question and you are not looking for a consultant - see <a href="https://openstreetmap.community/">openstreetmap.community</a> - an overview of a global and local communication channels used by OpenStreetMap community. That will direct you to the best place to ask such questions. OpenStreetMap mappers will help you there. Maybe me if you end in place where I am active at a given time :)</p>
<!--<p>In case that somebody needs them - <a href="https://github.com/matkoniecz">my GitHub profile</a>, <a href="https://www.linkedin.com/in/mateusz-konieczny-910473168/">my LinkedIn profile</a>.-->
<p>In case that somebody needs it - <a href="https://github.com/matkoniecz">my GitHub profile</a>.
</section>
</div>
</body>
</html>