-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (55 loc) · 2.04 KB
/
index.html
File metadata and controls
68 lines (55 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Conapps - Landing Page</title>
<!-- Libraries -->
<!-- Custom styles. -->
<link href="/static/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="navbar__controls">
<a class="navbar__brand" href="#">Conapps</a>
<button class="navbar__toggler" type="button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path d="M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z"
fill="white" />
</svg>
</button>
</div>
<div class="navbar__container">
<ul class="navbar__items">
<li class="navbar__item navbar__item--active">
<a class="navbar__link" href="/static/index.html">Home
<span class="screen_reader">(current)</span>
</a>
</li>
<li class="navbar__item">
<a class="navbar__link" href="/static/about.html">About</a>
</li>
<li class="navbar__item">
<a class="navbar__link" href="/static/services.html">Services</a>
</li>
<li class="navbar__item">
<a class="navbar__link" href="/static/contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<h4 class="sandbox">
<a href="/static/sandbox.html">Sandbox</a>
</h4>
<img class="logo" src="/static//logo.png" alt="Logo Conatel">
</div>
<!-- JavaScript libraries -->
<!-- Custom JavaScript -->
<script src="/static/app.js"></script>
</body>
</html>