-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 1.21 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
<html>
<head>
<title>My First Web Server</title>
<link rel="stylesheet" type="text/css" href="public/css/style.css">
<link rel="stylesheet" type="text/css" href="public/css/bootstrap.css">
</head>
<body>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Hello World!</h1>
<p>
This is my first web server
click 'Test More' button and test plenty of requests
</p>
<p><a href="test.html" class="btn btn-primary btn-lg" href="#" role="button">Test More ></a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Language</h2>
<p>Implemented in C++</p>
</div>
<div class="col-md-4">
<h2>CSE351</h2>
<p>This is project of computer network class</p>
</div>
<div class="col-md-4">
<h2>Student ID</h2>
<p>My student ID is 20142028</p>
</div>
</div>
<hr>
<footer>
<p>CSE351 INTRODUCTION TO COMPUTER NETWORK</p>
</footer>
</div> <!-- /container -->
<script src="public/js/bootstrap.js"></script>
</body>
</html>