fix about page

This commit is contained in:
2026-06-18 19:48:20 +05:30
parent 8e0d704438
commit 9768eabe4d
163 changed files with 20461 additions and 23 deletions

32
test-wow.html Normal file
View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; padding: 0; background: #fff; }
.marquee { height: 100px; background: #45BDDE; color: #fff; font-size: 40px; }
.wow-section {
position: relative;
background: #111;
margin-top: 50px;
padding-top: 100px;
}
.slanted-top {
position: absolute;
top: -50px;
left: 0;
width: 100%;
height: 100px;
background: #111;
transform: rotate(-2.07deg);
transform-origin: center;
}
</style>
</head>
<body>
<div class="marquee">Artificial Intelligence</div>
<div class="wow-section">
<div class="slanted-top"></div>
<div style="color:white; max-width: 1340px; margin: 0 auto;">WOW! Meet the next evolution</div>
</div>
</body>
</html>