-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogramming.html
177 lines (133 loc) · 4.91 KB
/
programming.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
<!DOCTYPE html>
<html>
<head>
<title>flipr lms</title>
<!----css file link-->
<link rel="stylesheet" type="text/css" href="css/programming.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!----Linking google fonts-->
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<!----font-awsome start-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
.bgcolor
{
background: rgba(0,0,0,0.1);
}
body
{
background: #FC354C; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #0ABFBC, #FC354C); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #0ABFBC, #FC354C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: white;
}
.navbar
{
background: #C04848; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #480048, #C04848); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #480048, #C04848); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
</style>
</head>
<body>
<!---Navigation Starts ----->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!------Responsive Button---->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navi">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<h1 style="color: white;margin-top: 10px;" id="myhead">Flipr LMS</h1>
</div>
<div class="collapse navbar-collapse" id="navi">
<!------Navigation menus starts---->
<ul class="nav navbar-nav navbar-right">
<li> <a href="index.php">Home</a></li>
<li> <a href="" id="our-location" class="btn-success" data-target="#mymodal" data-toggle="modal">Add New Course</a></li>
</ul>
<!------Navigation menus ends---->
</div>
</div>
</nav>
<!---Navigation Ends ----->
<!---programming languages Section Start ----->
<br><br><br><br><br>
<section class="latest-news-area" id="latest">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-title text-center">
<h2><b>PROGRAMMING LANGUAGES</b></h2>
<div class="sub-heading">
Following are the available programming languages <br>
Start learning today
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="news-active">
<div class="col-md-4 col-sm-6 col-xs-12 content-border" >
<div class="bgcolor latest-news-wrap " >
<div class="news-img">
<img src="img/JAVA.png" class="img-responsive">
<div class="deat">
<span>JAVA</span>
</div>
</div>
<div class="news-content">
<p>
Python is a scripting language like PHP, Perl, Ruby and so much more. It can be used for web programming
</p><br>
<a href="programming/java/java_programming.php">Start Reading...</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 content-border">
<div class="bgcolor latest-news-wrap">
<div class="news-img">
<img src="img/PYTHON.png" class="img-responsive">
<div class="deat">
<span>PYTHON</span>
</div>
</div>
<div class="news-content">
<p>
Python is a scripting language like PHP, Perl, Ruby and so much more. It can be used for web programming
</p><br>
<a href="programming/python/python_home.html">Start Reading...</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 content-border">
<div class="bgcolor latest-news-wrap">
<div class="news-img">
<img src="img/ANDROID.png" class="img-responsive">
<div class="deat">
<span>ANDROID</span>
</div>
</div>
<div class="news-content">
<p>
Python is a scripting language like PHP, Perl, Ruby and so much more. It can be used for web programming
</p><br>
<a href="programming/android/android_home.html">Start Reading...</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!---programming languages Section Start ----->
</body>
</html>