Last active
June 16, 2018 15:44
-
-
Save mojoaxel/78a15b713cdad19ee89b5cda97ccb2f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>GC394AC - Station 7</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
.radio-container { | |
position: relative; | |
background-image: url("//www.universal-radio.com/catalog/portable/5002front.jpg"); | |
width: 1008px; | |
height: 492px; | |
} | |
.frequency-input { | |
background: white; | |
position: absolute; | |
top: 100px; | |
left: 380px; | |
width: 245px; | |
height: 125px; | |
border-radius: 5px; | |
padding: 10px; | |
box-sizing: border-box; | |
} | |
</style> | |
</head> | |
<body> | |
<h2 align="center">GC394AC - Station 7</h2> | |
<form method="post"> | |
<div class="radio-container"> | |
<div class="frequency-input"> | |
<label>Bitte Frequenz eingeben:</label><br> | |
<input name="frequency" type="name" size="25" maxlength="10">MHz<br> | |
<input value="einstellen" type="submit"> | |
</p> | |
</div> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment