49 lines
1.1 KiB
HTML
49 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>Testing</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link rel='stylesheet' type='text/css' media='screen' href='roller.css'>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<div class="title">
|
|
<p>We can help with</p>
|
|
<div class="roller-container">
|
|
<p class="roller0">Software Development</p>
|
|
<p class="roller1">Construction</p>
|
|
<p class="roller2">Graphic Design</p>
|
|
<p class="roller3">Marketing</p>
|
|
<p class="roller4">Human Resources</p>
|
|
</div>
|
|
<p>here at Example Co.</p>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
<style>
|
|
html {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: black;
|
|
color: white;
|
|
font-size: x-large;
|
|
}
|
|
|
|
main {
|
|
max-width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
p {
|
|
margin: 0px;
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
</html> |