-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (44 loc) · 1.5 KB
/
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
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Converter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="section-fluid-main ">
<form>
<div class="section-col-1">
<div class="section">
<h3 class="color-yellow">Case Converter</h3> <br/>
<textarea id="input" rows="5" placeholder="Enter text to convert"></textarea>
<div class="button-group">
<button type="button" id="sentence-btn" class="btn">Sentence case</button>
<button type="button" id="lower-btn" class="btn">lower case</button>
<button type="button" id="upper-btn" class="btn">UPPER CASE</button>
<button type="button" id="capital-btn" class="btn">Capitalized</button>
</div>
</div>
</div>
<div class="section-col-1">
<div class="section">
<h2 class="history">History</h2>
<button type="button" id="delete-all" class="btn">Delete All</button>
<div class="history-container">
<ul id="history"></ul>
</div>
</div>
</div>
</form>
</div>
<footer>
<div class="container">
<p>This page has been visited <span id="count"></span> times.</p>
</div>
</footer>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-database.js"></script>
<script src="script.js"></script>
</body>
</html>