-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A Simple Background Color Changer">
<meta name="keywords" content="HTML, cheatsheet,">
<meta name="author" content="Sagar Sharma">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" integrity="sha512-PgQMlq+nqFLV4ylk1gwUOgm6CtIIXkKwaIHp/PAIWHzig/lKZSEGKEysh0TCVbHJXCLN7WetD8TFecIky75ZfQ==" crossorigin="anonymous" />
<link rel="stylesheet" href="public/css/style.css">
</head>
<body>
<div class="container">
<form>
<input type="text" id="userColor" placeholder="#FFFFFF" autocomplete="off">
<input type="submit" value="Change Color" id="changeColor" class="btn">
</form>
<button id="randomColor" class="btn"></button>
</div>
<footer>
<a href="https://github.com/Sagar-Sharma-7" target="_blank" title="github" > </a>
<p>Made with <i class="fas fa-heart" title="love"></i> by Sagar Sharma</p>
</footer>
<script src="public/js/main.js"></script>
</body>
</html>