-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
61 lines (41 loc) · 1.99 KB
/
about.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.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DevCol - About</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="DevCol">
<meta name="apple-mobile-web-app-title" content="DevCol">
<meta name="theme-color" content="#98ead3">
<meta name="msapplication-navbutton-color" content="#98ead3">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="msapplication-starturl" content="/">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" sizes="300x300" href="/images/icon.png">
<link rel="apple-touch-icon" type="image/png" sizes="300x300" href="/images/icon.png">
</head>
<body>
<main>
<h1>About Dev Colatina</h1>
<img src="/images/devcol-photo.jpeg" alt="DevCol" style="margin: 20px 0;">
<p>Dev Colatina Meetup é um evento aberto a todos(as), independente do seu nível de conhecimento em programação. O nosso principal objetivo é reunir a comunidade de desenvolvedores de Colatina/ES e região para compartilhar experiências e conhecimentos.</p>
<a class="btn" href="/index.html">Home</a>
<a class="btn" href="/admin.html">Admin</a>
</main>
<script>
if(navigator.serviceWorker) {
navigator.serviceWorker.register('/service-worker.js').then( function (registration) {
console.log('Success!', registration.scope);
}).catch( function (error) {
console.error('Failure!', error);
});
}
</script>
</body>
</html>