itm325-projects/Assignment0/Assignment0/index.html
2023-09-20 02:34:44 -06:00

63 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
html {
background-image: linear-gradient(to right, #283044, rgba(1.0, 1.0, 1.0, 0.0) 10%, rgba(1.0, 1.0, 1.0, 0.0) 90%, #283044);
animation: 3s infinite alternate backgroundAnim;
}
body {
margin-left: 10%;
margin-right: 10%;
font-family: "DejaVu Sans", "Segoe UI", monospace;
text-align: center;
}
h1 {
animation: 1s infinite alternate headingAnim;
font-size: 3rem;
}
p {
color: steelblue;
font-size: 1.5rem;
}
@keyframes headingAnim {
from {
color: #FFBC42;
}
to {
color: steelblue;
}
}
@keyframes backgroundAnim {
from {
background-color: #161A25;
}
to {
background-color: #283044;
}
}
</style>
</head>
<body>
<h1>
Hello, World!
</h1>
<p>This is a website. Hooray!</p>
<p style="font-size:1rem;">&lt;annoyed&gt;</p>
<p style="font-size:1rem;">even if it does have to be made with the .NET Framework rather than something that would work cross-platform...</p>
<p style="font-size:1rem;">&lt;/annoyed&gt;</p>
<img src="avatar.png" style="max-height: 10rem" alt="My logo">
</body>
</html>