-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
108 lines (103 loc) · 4.77 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid p-5 bg-light text-black text-center">
<h1>Coding for future</h1>
<p>Happy learning!!!</p>
</div>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Home</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 active" aria-current="page" href="#">Programs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">Future</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="box">
<video class="mainVideo" id="video" autoplay muted loop>
<source src="assets/learn.mp4" type="video/mp4">
</video>
<div class="v-box"><p>Code in a flexible environment</p><br>
<p>Explore your creativity</p>
</div>
</div>
<div class="box">
<!-- Danylo code starts here -->
<!-- add youtube vide0
add border
add border-box
-->
<div class="tst-box">
<video src="/assets/video.mp4" width="100%" height="100%" controls></video>
</div>
<!--
align it to the center add more text
-->
<div class="tst-box"><p>Programming, in the context of computers and software, refers to the process of writing, designing, and testing code that can be executed by a computer. It's a way of giving instructions to a computer to perform specific tasks or solve problems. Programmers use programming languages like Python, Java, C++, and many others to write these instructions.
Programming involves creating algorithms, defining data structures, and specifying the logic that allows a computer to perform various functions. It's a crucial skill in the world of technology and is used to develop software, websites, mobile apps, and more. Programmers play a pivotal role in shaping the digital world we interact with daily.</p></div>
<!-- Danylo code ends here -->
</div>
<div class="box">
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<h3>Column 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...</p>
</div>
<div class="col-sm-4">
<h3>Column 2</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...</p>
</div>
<div class="col-sm-4">
<h3>Column 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...</p>
</div>
</div>
</div>
</div>
<div class="box">
<b>Note on coding</b><br>
add left-border with linear gradient using two colors black and white<br>
with some information on right
</div>
<footer>
<!-- Danylo - Task2 code starts here -->
add map here <br>
on the top of map<br>
create simple form only for subscription<br>
add copyright and social media<br>
(regular or bootstrap both will go)
<!-- Danylo - Task2 code ends here -->
</footer>
</body>
</html>