Skip to content

Instantly share code, notes, and snippets.

@BjoernSchilberg
Created June 22, 2022 07:36
Show Gist options
  • Save BjoernSchilberg/cfcc377f0e55d0e7b6677557e294f3a1 to your computer and use it in GitHub Desktop.
Save BjoernSchilberg/cfcc377f0e55d0e7b6677557e294f3a1 to your computer and use it in GitHub Desktop.
Sternenwarte: Einfaches Beispiel für eine Web App
<!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