-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeinefriends.html
70 lines (66 loc) · 2.24 KB
/
meinefriends.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
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="IMG_1257.png" style="height:70;width:90;">
<script src="script.js" onload="frage_freunde()"></script>
<title>
Friends-Hauptseite-angemeldet
</title>
</head>
<body>
<header>
<div><img src="IMG_1257.png" class="logo"></div>
<div></div>
<div><a href="proa.html">Projekt anlegen</a></div>
<div><a href="pros.html">Projektsuche</a></div>
<div><a href="freuf.html">Freunde finden</a></div>
<div><a href="einstellung.html">Einstellungen</a></div>
</header>
<div><a href="freuf.html" class="freundlink">Zurück</a></div>
<div>
<table>
<thead>
<tr>
<th>
Username
</th>
<th>
Pronomen
</th>
<th>
Interessen
</th>
</tr>
</thead>
<tbody id="tabellenfreunde">
</tbody>
</table>
<table>
<thead>
<tr>
<th>
Username
</th>
<th>
Pronomen
</th>
<th>
Interessen
</th>
<th>
Anfrage annehmen?
</th>
<th>
Anfrage ablehnen?
</th>
</tr>
</thead>
<tbody id="tabellenanfrage">
</tbody>
</table>
</div>
</body>
</html>