-
Notifications
You must be signed in to change notification settings - Fork 3
/
home_page.html
199 lines (147 loc) · 6.78 KB
/
home_page.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
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
<!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>Home page</title>
<!-- -----font awesome cdn link----- -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- ----link css file----- -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/login.css">
</head>
<body>
<div class="container">
<!-- ---------header-------- -->
<header>
<a href="home_page.html" class="logo">Virtual-<span>Learning</span></a>
<nav class="navbar">
<a href="onlineide/onlineide.html">Online IDE</a>
<a href="articles/article.html">Articles</a>
<a href="programming/programming.html">Programming</a>
<a href="app_dev/app_dev.html">App-dev</a>
<a href="web_dev/web_dev.html">Web-dev</a>
<a href="courses.html">Courses</a>
<a href="about.html">About</a>
<a href="index.html" class="btn1">Log Out</a>
</nav>
</header>
<!-- ---------------home -------- -->
<section class="home">
<div class="content">
<h3>Virtual learning is a better way of learning</h3>
<p>E-learning is a learning experience that is enhanced through utilizing computers and internet both outside and inside the facilities of the educational organization.</p>
</div>
<div class="image">
<img src="images/home.jpg" alt="photo of a boy using computer">
</div>
</section>
<!-- -----------slider viewer------------- -->
<h1 class="heading" id="head">popular courses</h1>
<section class="slider">
<div class="slide-container active">
<div class="slide">
<div class="content">
<h3>01. Website development</h3>
<p>Web development is the work involved in developing a website for the Internet. <br> <br>
Every Web Developer must have a basic understanding of HTML, CSS, and JavaScript.</p>
<a href="web_dev/web_dev.html" class="btn">See More</a>
</div>
<div class="image">
<img src="images/webimage.jpg" alt="">
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<div class="content">
<h3>02. app development</h3>
<p>App Development refers to the creation of applications for use on devices such as desktop, tablets and smartphones. <br> <br> Mobile applications are designed and built for different operating systems.</p>
<a href="app_dev/app_dev.html" class="btn">See More</a>
</div>
<div class="image">
<img src="images/appimage.jpg" alt="">
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<div class="content">
<h3>03. programming</h3>
<p>Programming is the process of creating a set of instructions that tell a computer how to perform a task. <br><br> some Programming languages are JavaScript, Python, java and C++.</p>
<a href="programming/programming.html" class="btn">See More</a>
</div>
<div class="image">
<img src="images/progimage.jpg" alt="">
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<div class="content">
<h3>04. Online IDE</h3>
<p>This is our Online IDE Here you can run any C, C++, Java, JavaScript, Python and also run R Program.<br><br>This is very helpfull for beginners who don't know how to set up IDE They can run their program with internet connection. </p>
<a href="onlineide/onlineide.html" class="btn">learn more</a>
</div>
<div class="image">
<img src="images/progimage.jpg" alt="">
</div>
</div>
</div>
<div id="prev" onclick="prev()">
< </div>
<div id="next" onclick="next()"> > </div>
</section>
<h1 class="heading" id="head">programming language</h1>
<!-- ----------------programming------------- -->
<section class="course">
<div class="box">
<img src="images/Python.png" alt="">
<h3>Learn Python</h3>
<p>Python is a high-level programming language designed to be easy to read and simple to implement. <br><br> It is open source, which means it is free to use, even for commercial applications.</p>
<!-- <a href="programming/python.html" class="btn">See More</a> -->
<a href="programming/python.html" class="btn">Videos</a>
<a href="articles/python_article.html" class="btn">Article</a>
</div>
<div class="box">
<img src="images/java.jpg" alt="">
<h3>learn Java</h3>
<p>Java is a high-level, class-based, object-oriented programming language <br> <br> <br>
that is designed to have as few implementation dependencies as possible.</p>
<!-- <a href="programming/java.html" class="btn">See More</a> -->
<a href="programming/java.html" class="btn">Videos</a>
<a href="articles/java_article.html" class="btn">Article</a>
</div>
<div class="box">
<img src="images/cpp.png" alt="">
<h3>learn c++</h3>
<p>C++ is a cross-platform language that can be used to create high-performance applications. <br><br>
created by Bjarne Stroustrup as an extension of the C programming language, </p>
<!-- <a href="programming/cpp.html" class="btn">See More</a> -->
<a href="programming/cpp.html" class="btn">Videos</a>
<a href="articles/cpp_article.html" class="btn">Article</a>
</div>
</section>
<!-- -----------footer section------------ -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>about</h3>
<p>This is a platform where students can learn web development, app development & different programming languages through video tutorials.
And student can also run their program using our website through Online IDE.This is free learning website.</p>
</div>
<div class="box">
<h3>contact us</h3>
<p><i class="fas fa-phone"></i> 843-652-8938 | 973-474-7448 </p>
<p><i class="fas fa-envelope"></i> souravbuie17@gmail.com</p>
<p><i class="fas fa-map-marker-alt"></i> Subhankarnagar , Pohabagan , Bankura - 722146 , West Bengal , INDIA.</p>
</div>
</div>
<div class="credit">created with <i class="fas fa-heart"></i> by final year <span>F</span> group</div>
</section>
</div>
<!-- ----- custom js file link----- -->
<script src="js/main.js"></script>
</body>
</html>