-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (50 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>boogIT assignment</title>
<meta name="description" content="First front end assignment for the boogIT .NET mentorship program">
<meta name="author" content="Sargu Iulia">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="assets/css/bootstrap.min.css"
rel="stylesheet">
<link
href="assets/css/style.min.css"
rel="stylesheet">
</head>
<body>
<div class="content-area">
<header class="elearning-header">
<h3>Prima pagina de elearning</h3>
</header>
<div class="elearning-main">
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-12 menu">
<div><a href="./featured.html">Featured</a></div>
<div><a href="./ongoing.html">Ongoing</a></div>
<div><a href="./completed.html">Completed</a></div>
</div>
<div class="col-md-6 col-sm-9 col-xs-12 intro">
<picture>
<source srcset="assets/img/fullstack-w766.jpg" media="(max-width: 1199px)">
<source srcset="assets/img/fullstack-w960.jpg" media="(max-width: 1920px)">
<source srcset="assets/img/fullstack-w1920.jpg">
<img src="assets/img/fullstack-w1920.jpg" alt="fullstack course image" class="img-responsive">
</picture>
<h4>The Ultimate Fullstack Developer Course</h4>
<p>Our Full Stack Course breaks down the fundamentals of each technology that you would require to become a Full Stack Developer.
The entire course is broken down into five separate segments: Frontend, Backend, Database, Other Essential Technologies and Debugging/Version Control.
Each section includes multiple technologies to help you gain more experience as a developer.</p>
</div>
<div class="col-md-3 col-sm-12 col-xs-12 extra">
<p>Text</p>
</div>
</div>
</div>
</div>
<footer class="footer-area">
Iulia Sargu ©
</footer>
</body>
</html>