Sure, here's a small HTML code with CSS to display information about the time lapse video of the Bolands Quay demolition of Dublin's Bolands Mill:
HTML:
html
Bolands Quay Demolition Time Lapse
Welcome to the Bolands Quay Demolition Time Lapse
Watch the fascinating time lapse video of the demolition of Dublin's historic Bolands Mill at Bolands Quay. Experience the transformation of this iconic site through our time lapse footage.
CSS (styles.css):
css
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #1e90ff;
}
video {
width: 100%;
height: auto;
margin-top: 20px;
}
JavaScript (script.js):
javascript
// Interactive functionality can be added here
This code includes a basic HTML structure with CSS for styling and a placeholder for JavaScript for interactive functionality. The CSS is designed to make the content visually appealing and easy to read.