Browse Source

inital commit

baumsplitter41 2 weeks ago
parent
commit
aca56ed4f1
4 changed files with 53 additions and 0 deletions
  1. BIN
      assets/Logo_BaumSplitter41.png
  2. BIN
      assets/Logo_BaumSplitter41_transparent.png
  3. 25 0
      css/style.css
  4. 28 0
      index.html

BIN
assets/Logo_BaumSplitter41.png


BIN
assets/Logo_BaumSplitter41_transparent.png


+ 25 - 0
css/style.css

@@ -0,0 +1,25 @@
+html {
+    scroll-behavior: smooth;
+}
+body {
+  	background-color: grey;
+  	margin: auto;
+}
+.main_img {
+ 	width: 60px;
+ 	height: 600px;
+ 	border-radius: 10px;
+ 	border: 2px solid white;
+ 	margin: 10px;
+}
+
+
+h1 {
+  	color: white;
+  	text-align: center;
+}
+.welcome_text {
+ 	 color: white;
+ 	 text-align: center;
+}
+

+ 28 - 0
index.html

@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>BaumSplitter41</title>
+    <link rel="stylesheet" href="css/style.css">
+    <link rel="icon" type="image/png" href="../assets/Logo_BaumSplitter41_transparent.png"/>
+</head>
+<body>
+	<div class="kao">
+		<script src="https://keepandroidopen.org/banner.js?size=minimal&animation=off&hidebutton=off"> </script>
+	</div>
+
+
+	<h1>Moin / Hi</h1>
+	<div class="main_img">
+		<img src="../assets/Logo_BaumSplitter41.png" alt="Logo BaumSplitter41">
+	</div>
+
+	<div class="welcome_text">
+	<p>I'm BaumSplitter41, I'm am a student from germany. This site is work in progress.</p>
+	</div>
+
+
+
+</body>
+</html>