This repository was archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
82 lines (77 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="res/images/favicon.ico">
<title>My Dashboard</title>
</head>
<body>
<header>
<strong>Welcome to your dashboard!</strong>
</header>
<section>
<div>
<img src="res/images/me.png" alt="My picture">
</div>
<div>
<ol>
<li>John Doe</li>
<li>27/06/1993</li>
<li>Software Engineering</li>
</ol>
</div>
<div>
<strong>2.65</strong>
</div>
</section>
<section>
<h1>Courses</h1>
<table border="1">
<thead>
<tr>
<th>#</th>
<th>Course Title</th>
<th>Semester</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Agile software development</td>
<td>1</td>
<td>82</td>
</tr>
<tr>
<td>2</td>
<td>System modeling</td>
<td>1</td>
<td>85</td>
</tr>
<tr>
<td>3</td>
<td>Object-oriented programming</td>
<td>2</td>
<td>99</td>
</tr>
<tr>
<td>4</td>
<td>Estonian language Level A2</td>
<td>2</td>
<td>65</td>
</tr>
</tbody>
</table>
</section>
<footer>
<ul>
<li>
<a href="https://ois2.ut.ee/">OIS</a>
</li>
<li>
<a href="https://courses.cs.ut.ee/">Courses</a>
</li>
</ul>
</footer>
</body>
</html>