-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.html
94 lines (88 loc) · 3.59 KB
/
location.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./assets/stylesheets/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;600&display=swap" rel="stylesheet">
<title>Sabah Creative Economy & Innovation Centre</title>
</head>
<body>
<section class="navbar">
<section class="logo">
<a href="./index.html">
<img src="./assets/images/sceic.png" alt="SCEIC" class="img-logo" >
</a>
</section>
<section class="menu">
<a href="./location.html">Location</a>
<a href="./index.html">About</a>
<a href="./index.html">Home</a>
</section>
</section>
<section class="hero">
<section class="hero-text">
<h1>
Welcome to
<br>
Sabah Creative Economy & Innovation Centre
<br>
(SCEIC)
</h1>
</section>
</section>
<section class="about">
<h2>About</h2>
<p>
SCEIC is an initiative under Sabah state government and
this initiative aimed to accelerate industries in Sabah
through technology, innovation and creativity, and collaboration
with various stakeholders in the ecosystem.
</p>
</section>
<section class="programmes">
<h2>Programmes</h2>
<section class="row">
<section class="column">
<img src="./assets/images/undraw_drone_surveillance_kjjg.png" alt="" class="img-fluid">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation</p>
</section>
<section class="column">
<img src="./assets/images/undraw_drone_surveillance_kjjg.png" alt="" class="img-fluid">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation</p>
</section>
<section class="column">
<img src="./assets/images/undraw_drone_surveillance_kjjg.png" alt="" class="img-fluid">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>
</section>
</section>
</section>
<section class="contact-us">
<h2>Contact Us</h2>
<!-- Sign up free at formspree.io to enable this feature. -->
<form action="https://formspree.io/f/{form_id}" method="post">
<label for="name">Name</label>
<input type="text" id="name" class="form-input">
<label for="email">Email</label>
<input type="email" id="email" class="form-input">
<button type="submit">Submit</button>
</form>
</section>
<footer>
<section class="copyright">
<small>Copyright © 2021. All rights reserved.</small>
<br>
<small>
This page was built during "Learn to code in a day" workshop with
<a href="https://rambutan.academy" target="_blank">Rambutan Code Academy</a>.
</small>
</section>
<section class="social-media">
<a href="https://www.facebook.com/SCEIHSabah/" target="_blank">
<img src="./assets/images/facebook.png" alt="Facebook" class="social-icon">
</a>
<img src="./assets/images/instagram.png" alt="Instagram" class="social-icon">
</section>
</footer>
</body>
</html>