-
Notifications
You must be signed in to change notification settings - Fork 1
/
train.html
77 lines (61 loc) · 2.05 KB
/
train.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
<!DOCTYPE html>
<html>
<head>
<title>Trainings</title>
<link rel="stylesheet" type="text/css" href="css/train.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Rubik">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<header>
<span id="spane" onclick="openNav()">☰ </span>
<h1>TRAININGS</h1>
</header>
<nav id="mySidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html"><div id="home"><b>HOME</b></div></a>
<a href="edu.html"><div id="education"><b>EDUCATION</b></div></a>
<a href="train.html"><div id="trainings"><b>TRAININGS</b></div></a>
<a href="project.html"><div id="projects"><b>PROJECTS</b></div></a>
<a href="pofile.html"><div id="profile"><b>Profile</b></div></a>
</nav>
<section>
<div class="w3-card-12">
<img src="img/html.jpg" >
<div class="w3-panel w3-card-2">HTML/CSS (Online)
November(2015)-January(2016)
: W3school<br>
</div>
</div>
</section>
<section>
<div class="w3-card-12">
<img src="img/javascript.jpg"><br>
<div class="w3-panel w3-card-4">JavaScript,jQuery and AngularJs
(Online) February-May(2016): FreeCodeCamp</div>
</div>
</section>
<section>
<div class="w3-card-12">
<img src="img/cloud.jpg"><br>
<div class="w3-panel w3-card-4">Big Data and Cloud Computing
June 2016 - July 2016 : Imedita Summer Training Programme
</div>
</div>
<div id="mid"></div><br>
</section>
<footer class="endmenu">
<a href="index.html"><p id="l1"><b>Home</b></p></a>
<div class="h-divider"></div>
<a href="edu.html"><p id="l1"><b>Education</b></p></a>
<div class="h-divider"></div>
<a href="train.html"><p id="l1"><b>Trainings</b></p></a>
<div class="h-divider"></div>
<a href="project.html"><p id="l1"><b>Project</b></p></a>
<div class="h-divider"></div>
<a href="profile.html"><p id="l1"><b>Profile</b></p></a>
<div class="h-divider"></div>
</footer>
</body>
</html>