-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.35 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.35 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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Text Transform</title>
</head>
<body>
<div class="container">
<h3 class="text-center">text transform</h3>
<textarea id="txaText" class="txa" cols="30" rows="10" placeholder="Type your text here"></textarea>
<div class="btn-group flex-wrap" data-toggle="buttons">
<button id="btnUpper" class="btn btn-primary">uppercase</button>
<button id="btnLower" class="btn btn-primary">lowercase</button>
<button id="btnUpperLower" class="btn btn-primary">UPPER-lower</button>
</div>
<div>
<i id="copy" class="fas fa-copy"></i>
<textarea id="txaNewText" class="txa form-control" cols="30" rows="10" placeholder="Your new text" readonly></textarea>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>