-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
212 lines (195 loc) · 11.5 KB
/
index.html
File metadata and controls
212 lines (195 loc) · 11.5 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ScriptLab</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico"><!--Link to favicon-->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'><!--Link to boxicons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"><!--Link to bootstrap css-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script><!--Link to bootstrap js-->
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><img src="images/scriptbigfont-removebg-preview.png" alt="ScriptLab"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#about">About ScriptLab</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#projects">Projects</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<!--Home section-->
<!--Create hero section-->
<section class="heroSection" id="home">
<!--Insert video background-->
<video autoplay loop muted playsinline class="videoBackground">
<source src="videos/blueWaves.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!--Create video overlay-->
<div class="videoOverlay"></div>
<!--Create video overlay text-->
<div class="heroContent">
<h2 class="typeWriter">Welcome to <span>ScriptLab</span></h2>
<!--Insert projects link-->
<a href="#projects">view projects</a>
</div>
</section>
<!--About Section-->
<section id="about">
<h2>About Script Lab</h2>
<!--Create about content container-->
<div class="contentContainer">
<div class="highlightContainer">
<!--Create highlight content-->
<div class="highlightItem">
<i class='bx bx-cloud'></i>
<h4>API's</h4>
<p>
APIs allow different software systems to communicate with each other by providing a set of rules for how requests and responses should be structured. They enable the integration of various services, such as fetching data from a server or interacting with external platforms.
</p>
</div>
<div class="highlightItem">
<i class='bx bxs-book'></i>
<h4>Libraries</h4>
<p>
A library is a collection of pre-written code, functions, and routines that developers can use to perform common tasks. Instead of writing code from scratch, libraries simplify the process and save time by offering reusable, well-tested solutions.
</p>
</div>
<div class="highlightItem">
<i class='bx bxs-cog'></i>
<h4>Frameworks</h4>
<p>
A framework provides a structure for developers to build applications efficiently. It includes libraries, pre-defined code, and guidelines that make it easier to develop software by setting up conventions for how things should be done, ensuring consistency and reducing the need for repetitive tasks.
</p>
</div>
<div class="highlightItem">
<i class='bx bxs-data'></i>
<h4>CMS</h4>
<p>
A CMS is a software platform that allows users to create, manage, and modify digital content without requiring specialized technical knowledge. Commonly used for websites, it enables non-developers to build and manage content, such as blogs, articles, and product listings.
</p>
</div>
<div class="highlightItem">
<i class='bx bxs-file-json'></i>
<h4>JSON</h4>
<p>
JSON is a lightweight data format used for storing and exchanging data between a server and client. It is easy to read and write for humans and easy to parse and generate for machines, making it the preferred format for APIs and data transfer.
</p>
</div>
<div class="highlightItem">
<i class='bx bx-joystick'></i>
<h4>Game</h4>
<p>
Game development involves the process of creating interactive, digital games. It includes writing code to handle game logic, graphics, user interactions, and animations. Game engines and frameworks help streamline development by providing pre-built tools for rendering graphics, physics, and more.
</p>
</div>
</div>
<div class="aboutContent">
<img src="images/scriptbigfont-removebg-preview.png" alt="Script Lab">
<h4>About ScriptLab</h4>
<p>
The purpose of ScriptLab is to showcase multiple Projects that use
API, Libraries, Frameworks, CMS, JSON, and more.
</p>
</div>
</div>
</section>
<!--Project Section-->
<section id="projects">
<h2>Projects</h2>
<!--Project Container-->
<div class="container mt-5">
<div class="row">
<!-- Card 1 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/formSnapShot.png" class="card-img-top" alt="Form API">
<div class="card-body">
<h5 class="card-title">Form API</h5>
<p class="card-text">This is a project that uses the form API to create form validations.</p>
<a href="formapi/formAPI.html" class="btn btn-primary">See More</a>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/weatherApp.png" class="card-img-top" alt="Weather App">
<div class="card-body">
<h5 class="card-title">Weather App</h5>
<p class="card-text">This is a project showcases bootstrap elements and jquery library to calculate city weather.</p>
<a href="weatherApp/index.html" class="btn btn-primary">See More</a>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/todoList.png" class="card-img-top" alt="React Todo List">
<div class="card-body">
<h5 class="card-title">React Todo List</h5>
<p class="card-text">A simple React Todo List that uses react framework and components to create a functioning todo list.</p>
<a href="https://github.com/Daniel1000c/TaskifyApp" class="btn btn-primary" target="_blank">See More</a>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/horizontalComingSoon.jpg" class="card-img-top" alt="Coming Soon">
<div class="card-body">
<h5 class="card-title">Coming Soon</h5>
<p class="card-text">Coming Soon</p>
<a href="#" class="btn btn-primary">See More</a>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/horizontalComingSoon.jpg" class="card-img-top" alt="Coming Soon">
<div class="card-body">
<h5 class="card-title">Coming Soon</h5>
<p class="card-text">Coming Soon</p>
<a href="#" class="btn btn-primary">See More</a>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="col-12 col-md-6 col-lg-4 mb-4">
<div class="card">
<img src="images/horizontalComingSoon.jpg" class="card-img-top" alt="Coming Soon">
<div class="card-body">
<h5 class="card-title">Coming Soon</h5>
<p class="card-text">Coming Soon</p>
<a href="#" class="btn btn-primary">See More</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 ScriptLab | All Rights Reserved</p>
</footer>
</body>
</html>