-
Notifications
You must be signed in to change notification settings - Fork 0
/
students.html
40 lines (39 loc) · 1.1 KB
/
students.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="nav">
<div class="pull-left">
<img src="images/logo_top.png">
</div>
<div class="container">
<div class="row">
<div class="pull-right">
<ul>
<li><a href="index.html"><button>Strona główna</button></a></li>
<li><a href="students.html"><button>Lista uczniów</button></a></li>
<li><a href="tests.html"><button>Testy</button></a></li>
<li><a href="#"><button id="special_button">Wyloguj</button></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="trapez">
<p></p>
</div>
<div class="jumbotron">
<div class="container">
Lista uczniów
</div>
</div>
<div class="footer">
<div class="container">
<img src="images/logo_footer.png" value="naucz.pl">
</div>
</div>
</body>
</html>