-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
72 lines (71 loc) · 2.03 KB
/
index.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
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- REPO TITLE -->
<title>Dom's Teaching</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #333;
font-weight: bold;
}
h2 {
color: #9c27b0;
text-align: center;
}
ul {
list-style-type: disc;
margin-left: 20px;
text-align: left;
}
li {
margin: 10px 0;
}
a {
color: #9c27b0;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<img
src="https://realitybending.github.io/media/ReBeL_LogoOnly_hu43f9474a7b47cfb59c41895962a4d3bc_15500_1200x0_resize_lanczos_3.png"
alt="Reality Bending Lab ReBeL Logo"
width="300px"
/>
<!-- REPO TITLE -->
<h1>Dom's Teaching</h1>
<p>
Welcome to the repository. You can access the different elements
from the README page:
</p>
<h2>
<a href="https://github.com/DominiqueMakowski/teaching"
>➡️ README ⬅️</a
>
</h2>
</div>
</body>
</html>