39 lines
869 B
HTML
39 lines
869 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { margin: 0; padding: 0; background: #fff; overflow-x: hidden; }
|
|
.marquee { height: 100px; background: #45BDDE; color: #fff; font-size: 40px; }
|
|
.slanted-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
margin-top: -30px;
|
|
}
|
|
.slanted-top {
|
|
width: 110%;
|
|
margin-left: -5%;
|
|
height: 100px;
|
|
background: #111;
|
|
transform: rotate(-2.07deg);
|
|
transform-origin: center;
|
|
}
|
|
.wow-section {
|
|
position: relative;
|
|
background: #111;
|
|
margin-top: -50px;
|
|
padding-top: 50px;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="marquee">Artificial Intelligence</div>
|
|
<div class="slanted-wrapper">
|
|
<div class="slanted-top"></div>
|
|
</div>
|
|
<div class="wow-section">
|
|
<div style="max-width: 1340px; margin: 0 auto;">WOW! Meet the next evolution</div>
|
|
</div>
|
|
</body>
|
|
</html>
|