-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·116 lines (104 loc) · 6.05 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
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="keywords" content="programming course, programming, computers, web programming, web coding, programmer,">
<meta name="description" content="Learn programming at the best school">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://i.icomoon.io/public/temp/b096d77226/UntitledProject/style.css">
<link rel="shortcut icon" type="image/x-icon" href="./pictures/school.png"/>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/style1.css">
<title>LB Courses</title>
</head>
<body>
<header class="header">
<div class="headerContent">
<h1 class="logo">LB Courses</h1>
<span class="icon-menu" id="btn-menu"> </span>
<nav class="nav" id="nav">
<ul class="menu">
<li class="menuItem select"><a href="index.html" class="menuLink select">Home</a></li>
<li class="menuItem"><a href="/html/courses.html" class="menuLink">Courses</a></li>
<li class="menuItem"><a href="/html/teachers.html" class="menuLink">Teachers</a></li>
<li class="menuItem"><a href="/html/contacts.html" class="menuLink">Contacts</a></li>
</ul>
</nav>
</div>
</header>
<div class="banner">
<img src="./pictures/banner.jpg" alt="banner">
<div class="bannerContent">
<h2 class="bannerTitle">The Best Course School</h2>
<p class="bannerTxt">E-Learning in a practical and easy way!</p>
</div>
</div>
<main class="main">
<div class="mainContent">
<section class="info">
<article class="infoColumn">
<img src="./pictures/php.jpg" class="infoImg" alt="Article 1">
<h2 class="infoTitle"> PHP 7</h2>
<p class="infoTxt">This is the new PHP 7 course, learn all about this language for web development!</p>
</article>
<article class="infoColumn">
<img src="./pictures/web.jpg" class="infoImg" alt="Article 2">
<h2 class="infoTitle">Web Programming</h2>
<p class="infoTxt">This is the new Web Programming course, learn everything about Html, Css, JavaScript, PHP and more!</p>
</article>
<article class="infoColumn">
<img src="./pictures/asp.jpg" class="infoImg" alt="Article 3">
<h2 class="infoTitle"> ASP NET MVC course</h2>
<p class="infoTxt">This is the new Asp net mvc course, we have more than 10 complete courses in this area!</p>
</article>
</section>
<section class="courses">
<h2 class="sectionTitle">Course categories</h2>
<div class="coursesColumn">
<img src="./pictures/catweb.jpg" class="coursesImg" alt="Courses WEB">
<div class="coursesDesc">
<h2 class="coursesTitle">WEB Design</h2>
<p class="coursesTxt">In the category of WEB Design and web programming you learn to create websites and web systems, there are more than 60 courses in this area!</p>
</div>
</div>
<div class="coursesColumn">
<img src="./pictures/catgames.jpg" class="coursesImg" alt="Courses Unity">
<div class="coursesDesc">
<h2 class="coursesTitle">Game programming</h2>
<p class="coursesTxt">In the game programming category you learn to create 3d and 2d games on multiple platforms!</p>
</div>
</div>
<div class="coursesColumn">
<img src="./pictures/catapp.jpg" class="coursesImg" alt="Courses Android Studio">
<div class="coursesDesc">
<h2 class="coursesTitle">Mobile application</h2>
<p class="coursesTxt">In the category of Mobile application programming you learn to create your own applications for Smartphones!</p>
</div>
</div>
<div class="coursesColumn">
<img src="./pictures/catnetworks.jpg" class="coursesImg" alt="Courses Networks">
<div class="coursesDesc">
<h2 class="coursesTitle">Networks and Servers</h2>
<p class="coursesTxt">In the Networks category you learn to work with servers and network management!</p>
</div>
</div>
</section>
</div>
</div>
</main>
<footer class="footer">
<div class="footerContent">
<div class="socialNetwork">
<a href="https://pt-br.facebook.com/" class="icon-facebook" target="_blank"></a>
<a href="https://twitter.com/login?lang=pt" class="icon-twitter" target="_blank"></a>
<a href="https://www.youtube.com/" class="icon-youtube" target="_blank"></a>
<a href="https://web.whatsapp.com/" class="icon-whatsapp" title="+55 (38) 99875-7909" target="_blank"></a>
<a href="https://mail.google.com/mail/u/0/#inbox" class="icon-email" title="brantlauro@hotmail.com" target="_blank"></a>
</div>
<p class="direitos">Lauro Brant's courses - All rights reserved</p>
</div>
</footer>
</body>
</html>
<script type="text/javascript" src="./js/menu.js"></script>