-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 1 KB
/
index.html
File metadata and controls
26 lines (23 loc) · 1 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
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="logo.jpg">
<title>Note Website</title>
</head>
<body style="background: linear-gradient(to right, #4A148C, #880E4F);">
<div class="container text-center mt-5">
<img id="logo" src="logo.jpg">
<h1 style="font-weight: bold; color: white;" class="mb-4">Note Website</h1>
<div class="note-container">
<textarea id="noteTextarea" class="form-control mb-3" placeholder="Write your note here..."></textarea>
<button id="downloadBtn" class="btn btn-success mr-2">Download</button>
<button id="deleteBtn" class="btn btn-danger">Delete</button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>