-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.55 KB
/
index.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
<!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" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.min.css" />
<title>Kamica</title>
</head>
<body>
<nav class="navbar bg-dark">
<h1>
<a href="dashboard.html"> <i class="fas fa-code"></i> Kamica </a>
</h1>
<ul>
<li><a href="profiles.html">Developers</a></li>
<li><a href="ambulance.html">Ambulance</a></li>
<li><a href="hospital.html">Hospital</a></li>
</ul>
</nav>
<section>
<div class="landing">
<div class="dark-overlay">
<div class="landing-inner">
<h1 class="x-large">Kamica</h1>
<h1>Ambulance Guideness</h1>
<p class="lead">
Create profile/portafolio, report the accident and get help to
save lives.
</p>
<div class="buttons">
<a href="ambulance.html" class="btn btn-primary">Ambulance</a>
<a href="hospital.html" class="btn btn">Hospital</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>