Created
June 22, 2022 07:36
-
-
Save BjoernSchilberg/cfcc377f0e55d0e7b6677557e294f3a1 to your computer and use it in GitHub Desktop.
Sternenwarte: Einfaches Beispiel für eine Web App
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 lang="de"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Titel</title> | |
<style> | |
body { | |
background: lightgreen; | |
} | |
.js { | |
background: #fcc; | |
} | |
</style> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<script> | |
jQuery(document) | |
.ready(function ($) { | |
$('<p class="js">JavaScript: Alles fertig geladen!</p>') | |
.appendTo("body"); | |
}); | |
</script> | |
</head> | |
<body> | |
<article> | |
<h1>Überschrift</h1> | |
<p>Textabsatz...</p> | |
</article> | |
<iframe src="https://player.twitch.tv/?channel=aeghir&parent=localhost&muted=true" | |
height="480" | |
width="640" | |
allowfullscreen> | |
</iframe> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment