-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
113 lines (104 loc) · 4.96 KB
/
index.php
File metadata and controls
113 lines (104 loc) · 4.96 KB
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
<!DOCTYPE html>
<html>
<head>
<title>PYTHON PROGRAMMING LAB</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/fonts.css">
<link rel="stylesheet" type="text/css" href="css/indee.css">
</head>
<style type="text/css">
#mySidenav a {
margin-top: -50px;
position: absolute;
background-color:#F05054;
left: -80px;
transition: 0.3s;
padding: 15px;
width: 100px;
text-decoration: none;
font-size: 15px;
text-align: justify;
color: white;
border-radius: 0 5px 5px 0;
}
#mySidenav a:hover {
left: 0;
}
.sidenav a .aone{
margin-top: 50px;
margin-left: 77px;
margin-bottom: -50px;
-ms-transform: rotate(20deg); /* IE 9 */
-webkit-transform: rotate(20deg); /* Safari 3-8 */
transform: rotate(-90deg);
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("a").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
window.location.hash = hash;
});
}
});
});
</script>
<body data-spy="scroll" data-target=".navbar" data-offset="60" style="font-family: Ubuntu;">
<!--header-->
<?php include 'headerindee.php'?>
<!--header end-->
<!--Homepage Starts-->
<img src="img/Python02.jpg" width="100%" height="640">
<section class="company-heading intro-type" id="parallax-one">
<div class="container">
<a class="ct-btn-scroll ct-js-btn-scroll" class="parallax" id="parallax-cta" href="#section2"><img alt="Arrow Down Icon" src="img/arrow-down.png"></a><div id="mySidenav" class="sidenav">
<a href="https://www.python.org/"><div class="aone"><font size=4>Python</font></div><div class="btwo">Install Python</div></a>
</div>
</div>
</section>
<div class="main">
<section id="section2">
<div class="container-fluid" id="explore">
<div class="col-md-12">
<div class="text" >
<div style="background-image:url('img/Python vlab_pic (1).jpg'); background-repeat:no-repeat;background-attachment: fixed; background-size: cover;width:100%;line-height: 4em; margin-left:0em; color: #fff;">WHO WE ARE ?</div>
</div>
<br><br>
<h4 style="color: grey;font-family: Ubuntu; text-align: center;font-size: 20px;">Python is considered as one of the simplest language in the programming world. It provides an interface with <br> the help of which python can be used for Software Development, GUI Development, Web<br> Development etc. Thus, making things easier for the programmer.Here, we have tried <br> to make the experience memorable for the user.
The simulation helps a student in<br> developing his programming skills effectively and efficiently. The basics will be cleared<br> and any sort of confusion will be eradicated with the help of line by line execution display of the code.<br><br></h4>
</div>
</div>
</section>
<section>
<div class="container-fluid">
<div class="col-md-12">
<div class="text">
<div style="background-image: url('img/Python vlab_pic (4).jpg'); background-repeat:no-repeat;background-attachment: fixed; background-size: cover;line-height: 4em; margin-left:0em;width: 100%; color: #fff;"> WHAT WE DO ?</div>
</div><br><br>
<h4 style="color: grey;font-family: Ubuntu; text-align: center;font-size: 20px;">
At present Python supports many operating systems. You can even use simple Python interpreters to run the code.
<br> A very important trait of Python is that it has a vast variety of open source frameworks and libraries.These <br> frameworksand libraries help in simplifying development work which is the need of the hour. <br> This provides the language a higher plethora over other programming languages used in the industry.
<br><br>
</h4>
</div>
</div><br><br>
<h1 style="color: #AF1216; text-align: center; font-weight: bold; font-size: 34px; font-family: Cabin Sketch;">LET'S GET STARTED<br><br>
<a href="lab/vlab.php"><img src="img/right1.png" width="6%"></a></h1><br>
</section>
</div>
<!---End of Homepage Content-->
<!---Footer--->
<?php include 'footer.php'?>
<!--End of Footer-->
</body>
</html>