<!DOCTYPE html>
<html>
<head>
<title>Hallo Welt</title>
</head>
<body>
<h1>Hallo Welt!</h1>
<h2>Das hier ist eine Webseite!</h2>
<p>Dieser Text wird mit dem Codesnippet links bestehend aus HTML und CSS erzeugt </p>
</body>
</html>
body {
background-color: #ffffff;
}
h1 {
color: #4885ed;
text-align: center;
font-size: 60px;
}
h2 {
color: #4885ed;
text-align: center;
font-size: 40px;
}
p {
color: #4885ed;
font-family: arial;
font-size: 15px;
text-align: center;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.