forked from ghostmkg/web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
75 lines (71 loc) · 3.11 KB
/
Index.html
File metadata and controls
75 lines (71 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slider_3D</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #D2D2D2;
background-image:
repeating-linear-gradient(
to right, transparent 0 100px,
#25283b22 100px 101px
),
repeating-linear-gradient(
to bottom, transparent 0 100px,
#25283b22 100px 101px
);
}
body::before{
position: absolute;
width: min(1400px, 90vw);
top: 10%;
left: 50%;
height: 90%;
transform: translateX(-50%);
content: '';
background-image: url(images/bg.png);
background-size: 100%;
background-repeat: no-repeat;
background-position: top center;
pointer-events: none;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="banner">
<div class="slider" style="--quantity: 10">
<div class="item" style="--position: 1"><img src="images/dragon_1.jpg" alt=""></div>
<div class="item" style="--position: 2"><img src="images/dragon_2.jpg" alt=""></div>
<div class="item" style="--position: 3"><img src="images/dragon_3.jpg" alt=""></div>
<div class="item" style="--position: 4"><img src="images/dragon_4.jpg" alt=""></div>
<div class="item" style="--position: 5"><img src="images/dragon_5.jpg" alt=""></div>
<div class="item" style="--position: 6"><img src="images/dragon_6.jpg" alt=""></div>
<div class="item" style="--position: 7"><img src="images/dragon_7.jpg" alt=""></div>
<div class="item" style="--position: 8"><img src="images/dragon_8.jpg" alt=""></div>
<div class="item" style="--position: 9"><img src="images/dragon_9.jpg" alt=""></div>
<div class="item" style="--position: 10"><img src="images/dragon_10.jpg" alt=""></div>
</div>
<div class="content">
<h1 data-content="CSS ONLY">
CSS ONLY
</h1>
<div class="author">
<h2>Abhishek Kumar</h2>
<p><b>Web Design</b></p>
<p>
Welcome to my world of creativity and innovation! I'm Abhishek Kumar, a passionate web designer dedicated to crafting visually stunning and user-friendly websites. With a keen eye for detail and a love for modern design trends, I specialize in creating immersive digital experiences that captivate audiences. Explore my portfolio to see how I blend aesthetics with functionality, turning ideas into reality. Let's collaborate to bring your vision to life!
</p>
</div>
<div class="model"></div>
</div>
</div>
</body>
</html>