-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 915 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
<!-- Same as before -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Gradient Generator</title>
</head>
<body>
<div class="gradient-container">
<input type="color" id="color1" value="#ff0000" />
<input type="color" id="color2" value="#00ff00" />
<select id="gradient-type">
<option value="linear">Linear Gradient</option>
<option value="radial">Radial Gradient</option>
</select>
<button onclick="generateGradient()">Generate Gradient</button>
<div id="gradient-preview"></div>
<!-- Added textarea for displaying and copying CSS code -->
<textarea id="css-code" readonly></textarea>
</div>
<script src="script.js"></script>
</body>
</html>