-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (85 loc) · 4.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>AKTexTuttils.com</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">AKTexTutils.com</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://developer.android.com/reference/android/text/TextUtils">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://[email protected]">Contact Us</a>
</li>
</ul>
</div>
</div>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</nav>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Welcome to AK Text Utils </strong> You can do anything with your text here.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<div class="container">
<form action='/analyze' method='get'>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label" style="color:green; ">
<h3>|| Enter your text here and let Text Utils do the magic ||</h3>
</label>
<textarea class="form-control" name="text" id="exampleFormControlTextarea1" rows="5"></textarea>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" name="removepunc" role="switch" id="flexSwitchCheckDefault">
<label class="form-check-label" for="flexSwitchCheckDefault">Remove punctuations</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" name="fullcaps" role="switch" id="flexSwitchCheckDefault1">
<label class="form-check-label" for="flexSwitchCheckDefault1">Upper Case</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" name="newlineremover" role="switch" id="flexSwitchCheckDefault2">
<label class="form-check-label" for="flexSwitchCheckDefault2">New Line Remover</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" name="extraspaceremover" role="switch" id="flexSwitchCheckDefault3">
<label class="form-check-label" for="flexSwitchCheckDefault3">Extra Space Remover</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" name="charactercount" role="switch" id="flexSwitchCheckDefault4">
<label class="form-check-label" for="flexSwitchCheckDefault4">Count Number of Character</label>
</div>
<button type="submit" class="btn btn-success mt-3">Analyze Text</button>
</form>
</div>
<footer class="page-footer font-small green mt-10">
<div>
<h5 class=" created-by text-center">
Created By
</h5>
<h6 class="name-of text-center ">
Abhishek Kumar
</h6>
</div>
<div class="footer-copyright text-center py-3 mt-8">© 2020 Copyright
<a> Text Utils</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>