Skip to content

Commit f1ab110

Browse files
Add initial HTML structure for Data Science UIBK
1 parent 3896a40 commit f1ab110

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Data Science UIBK</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
max-width: 800px;
11+
margin: 50px auto;
12+
padding: 20px;
13+
text-align: center;
14+
}
15+
h1 {
16+
color: #333;
17+
}
18+
</style>
19+
</head>
20+
<body>
21+
<h1>Data Science UIBK</h1>
22+
<p>Welcome to our GitHub Pages site.</p>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)