-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (34 loc) · 1.2 KB
/
index.html
File metadata and controls
54 lines (34 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apple intelligence Animated Gradient</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- page width -->
<div class="page-width">
<div class="main-wrapper">
<div class="intelligence_gradient_container">
<span></span>
</div>
<div class="intelligence_main-heading">
<h2>Apple Intelligence</h2>
</div>
<div class="intelligence_btns_container">
<button class="run_btn control_btns">
Click Me
</button>
<!-- <button class="pause_btn control_btns">
Back
</button> -->
</div>
<p class="note">
Clicking the "Click Me" button will trigger a gradient animation, and the button text will change to "Bye!!". Clicking it again will remove the gradient, and the button text will revert to "Click Me".
</p>
</div>
</div>
</body>
<script src="index.js"></script>
</html>