Personal_Website/movie-night.html

33 lines
529 B
HTML

<!doctype html>
<html lang="en">
<style>
body {
background-image: url('assets/img/popcorn.jpg');
background-size: 100%;
}
div {
background-color: #9275cc;
border: 2px solid white;
width: 60%;
position: fixed;
inset: 0px;
margin: auto;
opacity: 85%;
}
p1 {
text-align: center;
width: 50%;
}
</style>
<head>
</head>
<body>
<div>
<p1>Hello there! So you would like to join us for our weekly movie night? Please follow the instructions below to get everything setup!</p1>
</div>
</body>
</html>