-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_html.html
54 lines (45 loc) · 888 Bytes
/
test_html.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Community Workshop</title>
</head>
<body>
<h1>Überschrift</h1>
<p>Text des Paragraphs</p>
<a href="correlaid.org">Klicke hier.</a>
<p>Hier kommt ein wenig <b>Text</b> und dann <i>verlinke</i> ich auf eine <a href="correlaid.org">Website.</a></p>
<br>
<img src="assets/img/header.png" alt="CorrelAid Header" width="10%">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
<table>
<tr>
<th>Workshop</th>
<th>Date</th>
<th>Responsible</th>
</tr>
<tr>
<td>Git</td>
<td>10.02.</td>
<td>Emma</td>
</tr>
<tr>
<td>R</td>
<td>11.02.</td>
<td>Antje</td>
</tr>
<tr>
<td>Python</td>
<td>12.02.</td>
<td>Jonas</td>
</tr>
</table>
</body>
</html>