-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 998 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
#grad1 {
width: 100%;
max-width: 300px;
}
#grad1::before {
content: '';
height: 100%;
width: 100%;
position: absolute;
background-image: linear-gradient(to right, red , yellow);
}
</style>
</head>
<body>
<div class="row">
<div class="col">
<h2>TEST<h2/>
</div>
<div class="col">
<h2>TEST<h2/>
</div>
<div class="col">
<h2>TEST<h2/>
</div>
</div>
<h1>Linear Gradient - Top to Bottom</h1>
<p>This linear gradient starts red at the top, transitioning to yellow at the bottom:</p>
<div>
<div id="grad1">
<img src="/1.png" alt="">
</div>
</div>
</body>
</html>