Webseite hinzugefügt

This commit is contained in:
Franziska 2021-03-18 19:09:37 +01:00
commit f48c5f4fe3
4 changed files with 105 additions and 0 deletions

54
website/Tickleiste.html Normal file
View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<title>Tickleiste</title>
<link rel="stylesheet" href="stylesheet.css">
<script type="text/javascript" src="javascript.js"></script>
</head>
<body>
<div id="wrapper">
<div id="center">
<h1>Tickleiste</h1>
<img src="tickleiste.png" width= "1024" height= "724">
</div>
<div id="right">
<div id="aktuellerTick">
<h3>aktueller Tick</h3>
<p>-</p>
</div>
<div id="aktuellerSpieler">
<h3>aktueller Spieler</h3>
<p>-</p>
</div>
<div id="hinzufügen">
<input type="text" placeholder="Name"></input>
<input type="submit" class="sub" value="Spieler hinzufügen"></input>
</div>
<div id ="löschen">
<input type="text" placeholder="Name"></input>
<input type="submit" class="sub" value="Spieler löschen"></input>
</div>
<div id="ändern">
<form action="/action_page.php" method_"POST">
<input type="text" placeholder="Name"></input>
<input type="text" placeholder="Tick" pattern="[0-9]"></input>
<input type="submit" class="sub" value="Tick ändern"></input>
</form>
</div>
<div id="Liste">
<h3>Spielerliste</h3>
<p>-</p>
</div>
</div>
</div>
</body>
</html>
<canvas>

0
website/javascript.js Normal file
View file

51
website/stylesheet.css Normal file
View file

@ -0,0 +1,51 @@
#wrapper {
width: 1800px;
/*background-color:red;*/
}
#center {
text-align: center;
width:1024px;
float:left;
/* background-color:green;*/
}
#right {
width:650px;
margin-left:1150px;
/* background-color:blue;*/
}
#aktuellerTick {
width:300px;
text-align: center;
float:left;
}
#aktuellerSpieler {
width:300px;
text-align: center;
margin-left:50px;
float: right;
}
#hinzufügen {
text-align: right;
}
#löschen {
text-align: right;
}
#ändern {
text-align: right;
}
input[type="submit"] {
width:150px;
}
#Liste {
text-align: center
}

BIN
website/tickleiste.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB