-
Notifications
You must be signed in to change notification settings - Fork 0
/
despre.html
62 lines (61 loc) · 1.45 KB
/
despre.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<head>
<title> Copiuță Tehnologii Web </title>
<link rel="stylesheet" type="text/css" href="resurse/css/index.css">
<style>
td + td {
padding-left: 30px;
}
</style>
</head>
<body>
<div id="titlu">
<h1> Hack the World!!! </h1>
<h2> Despre</h2>
</div>
<div id="meniu">
<a href="index.html">Acasă</a>
<a href="copiuțe.html">Copiuțe</a>
<a href="catalog.php">Catalog</a>
<a href="detalii_tehnice/">Detalii tehnice</a>
<a href="despre.html">Despre</a>
</div>
<div id="conținut">
<h3> Profil student: </h3>
<img src="resurse/imagini/portret.webp" style="float: right; margin-left: 30px">
<table>
<tr>
<th></th>
<th>Detalii</th>
</tr>
<tr>
<td><b>Prenume:</b></td>
<td>Andrei</td>
</tr>
<tr>
<td><b>Nume:</b></td>
<td>Romila</td>
</tr>
<tr>
<td><b>Universitate:</b></td>
<td>Hyperion</td>
</tr>
<tr>
<td><b>Facultate:</b></td>
<td>Științe exacte și Inginerești</td>
</tr>
<tr>
<td><b>Specializarea:</b></td>
<td>Informatică</td>
</tr>
<tr>
<td><b>Anul:</b></td>
<td>II</td>
</tr>
<tr>
<td><b>Materie preferată:</b></td>
<td>Programare orientată pe obiecte</td>
</tr>
</table>
</div>
</body>