forked from sst-inc/arklink-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (78 loc) · 2.83 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="Teaching coding, one kid at a time"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta property="og:site_name" content="Kids Learn Code"/>
<meta property="og:locale" content="en_US"/>
<meta property="article:author" content="https://yaushing.github.io"/>
<link rel="stylesheet" href="assets/ex_libs/bootstrap_4/bootstrap.css"/>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" href="assets/images/favicon.jpeg"/>
<title>Arklink Solutions</title>
<script src="assets/ex_libs/jQuery/jquery-3.6.4.slim.min.js"></script>
<script src="assets/ex_libs/bootstrap_4/bootstrap.js"></script>
<script src="assets/js/script.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top">
<!-- Logo -->
<a class="navbar-brand" href="index.html">
<img src="assets/images/favicon.jpeg" alt="Logo" class="logo"/>
</a>
<a class="navbar-brand navbar-nav-text-heading" href="index.html">
Arklink Solutions
</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav" style="margin-left: auto;">
<li class="nav-item">
<a class="nav-link" href="#about">About Us</a>
</li>
<!--
<li>
<a class="nav-link disabled dash">-</a>
</li>
-->
</ul>
</div>
</nav>
</header>
<section id="hero">
<h2>Welcome to Arklink Solutions</h2>
<p>Idek something</p>
<a href="#" class="cta-button">Learn More</a>
</section>
<section id="about">
<h2>About Us</h2>
<p>Arklink Solutions is Project Serve</p>
</section>
<section id="goals">
<h2>Our Goal</h2>
<ul>
<li>Goal #1</li>
<li>Goal #2</li>
<li>Goal #3</li>
<li>Goal #4</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<p>© 2023 Arklink Solutions. All rights reserved.</p>
</footer>
</body>
</html>