Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joemay96 committed Mar 6, 2021
0 parents commit 4c3e115
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
Empty file added app.js
Empty file.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Josef Mayer</title>
</head>
<body>
<h1>Hey!</h1>
<h2>My name is Josef Mayer,</h2>
<h2>welcome to my Homepage!</h2>

<p>I am a computer sience student from germany and created some webapps like </p><a href="https://square-garden.de">SqaureGarden</a><p> or </p><a href="https://patientonline.net"> PatientOnline </a>

programmiersprachen
und dinge

<script src="app.js"></script>
</body>
</html>
25 changes: 25 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
* {
margin: 0;
padding: 0;
}

body {
font-family: 'Montserrat', sans-serif;
background: #E9F8FC;
}

h1 {
font-weight: bold;
font-size: 64px;
color: B3B3B3;
text-align: left;
margin-bottom: 50px;
margin-top: 150px;
margin-left: 100px;
}

h2 {
font-size: 32px;
font-weight: semi-bold;
margin-left: 100px;
}

0 comments on commit 4c3e115

Please sign in to comment.