-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (161 loc) · 7.47 KB
/
Copy pathindex.html
File metadata and controls
170 lines (161 loc) · 7.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OOP USING JAVA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.carousel-inner img {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm bg-dark justify-content-center">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link navbar-light" href="about.html">about us</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-light" href="contact.html">contact</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-light" href="services">services</a>
</li>
</ul>
</nav>
<div id="demo" class="carousel slide carousel-fade carousel-fade" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner ">
<div class="carousel-item active">
<img src="./pictures/girls.jpg" alt="girls working" width="1100" height="10">
<div class="carousel-caption">
<h3 class="page-header bg-info"> Object Oriented Programming<small>(Using Java)</small></h3>
<p>Object-oriented programming, or OOP, is an approach to problem-solving where all computations are carried out using objects. An object is a component of a program that knows how to perform certain actions and how to interact with other elements of the program. Objects are the basic units of object-oriented programming.</p>
</div>
</div>
<div class="carousel-item">
<img src="./pictures/tech3.jpg" alt="networking room" width="1100" height="10">
<div class="carousel-caption">
<h3 class="page-header bg-info"> Object Oriented Programming<small>(Using Java)</small></h3>
<p>Object-oriented programming, or OOP, is an approach to problem-solving where all computations are carried out using objects. An object is a component of a program that knows how to perform certain actions and how to interact with other elements of the program. Objects are the basic units of object-oriented programming.</p>
</div>
</div>
<div class="carousel-item">
<img src="./pictures/pic.jpg" alt="laptop" width="1100" height="10">
<div class="carousel-caption">
<h3 class="page-header bg-info"> Object Oriented Programming<small>(Using Java)</small></h3>
<p>Object-oriented programming, or OOP, is an approach to problem-solving where all computations are carried out using objects. An object is a component of a program that knows how to perform certain actions and how to interact with other elements of the program. Objects are the basic units of object-oriented programming.</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<br>
<br>
<div class="row">
<div class="container col-md-3 col-md-offset-0">
<form action="#">
<fieldset class="border p-4 border-dark">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control" id="uname" placeholder="Enter username" name="username">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="password">
</div>
<div class="form-group form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="remember"> Remember me
</label>
</div>
<button type="submit" class="btn btn-danger">log in</button>
</fieldset>
</form>
<br>
<fieldset class="border p-4 border-dark">
<label class="form-check-label">
Course links
</label>
<div class="list-group list-group-flush">
<button type="button" class="btn btn-link bg-info text-light text-left" onclick="loadDoc()">Getting Started</button>
<button type="button" class="btn btn-link bg-info text-light text-left" action="./control.js">Course Policy</button>
<button type="button" class="btn btn-link bg-info text-light text-left" action="./control.js">Problem Sets</button>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo1").innerHTML =
this.responseText;
}
};
xhttp.open("GET", "readme.txt", true);
xhttp.send();
}
</script>
<br>
<label class="form-check-label">Topics:</label>
<div class="list-group list-group-flush">
<button type="button" class="btn btn-link bg-info text-light text-left" action="./control.js">Intro to OOP</button>
<button type="button" class="btn btn-link bg-info text-light text-left" action="./control.js">Basics of Java</button>
<button type="button" class="btn btn-link bg-info text-light text-left" action="./control.js">Inheritance & Polymorphism</button>
</div>
</div>
</fieldset>
</div>
<div class="container col-md-9"><p id="demo1"></p></div>
</div>
</header>
</body>
<br>
<br>
<footer class="container-fluid text-center">
<div class="row">
<div class="col-md-4">
<h6 style="text-left"> Department of Computer Science Copyright © 2019</h6>
</div>
<div class="col-md-4">
<h3> Other Platforms</h3>
<!--Facebook-->
<a href="#" class="fa fa-facebook"></a>
<!--Twitter-->
<a href="#" class="fa fa-twitter"></a>
<!--Youtube-->
<a href="#" class="fa fa-youtube"></a>
<!--Comments-->
<a href="#" class="fa fa-comments"></a>
<!--Email-->
<a href="#" class="fa fa-envelope"></a>
<!--Facebook-->
<a class="fb-ic mr-3" role="button"><i class="fa fa-lg fa-facebook-f"></i></a>
<a class="fb-ic mr-3" role="button"><i class="fa fa-lg fa-twitter-f"></i></a>
<a class="fb-ic mr-3" role="button"><i class="fa fa-lg fa-youtube-f"></i></a>
<a class="fb-ic mr-3" role="button"><i class="fa fa-lg fa-comments-f"></i></a>
<a class="fb-ic mr-3" role="button"><i class="fa fa-lg fa-envelope-f"></i></a>
</div>
</div>
</footer>
</html>