-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (97 loc) · 5.68 KB
/
index.html
File metadata and controls
133 lines (97 loc) · 5.68 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/logo1.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Fontawesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<!-- CSS file link -->
<link rel="stylesheet" href="textAnalyzer.css">
<title>Free Text Analyzer by Atanu</title>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="img/logo2.png" alt="Logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Contact Me</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
My Other Projects
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://github.com/atanumondal-2001/Flipkart_Homepage_Clone" target="_blank">Flipkart homepage Clone using HTML, CSS & JavaScript</a></li>
<li><a class="dropdown-item" href="https://github.com/atanumondal-2001/SimpleCalculator" target="_blank">Simple Calculator with Dark and Light mode using HTML, CSS & JavaScript</a></li>
<!-- <li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
-->
</ul>
</li>
<!--<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</li>-->
</ul>
<form class="d-flex">
<a id="branding" class="nav-link" href="https://atanumondal-2001.github.io/atanuPortfolio/" target="_blank">Developed by Atanu Mondal <img id="dp" src="img/myPhoto2.jpg" alt="My Photo"></a>
</form>
</div>
</div>
</nav>
<!-- Main Body for Text Analyzer part -->
<div class="mainBody">
<div class="upperside">
<h1 id="mainHeading" class="my-4 text-center">Welcome!! - Type Here to Transform</h1>
<div id="TextArea" class="form-floating">
<textarea class="form-control my-4 inputBox" placeholder="Enter Your Text Here..." id="inputText" style="height: 200px;"></textarea>
<!--<label for="inputText">Enter Your Text Here......</label>-->
<!-- <grammarly-editor-plugin></grammarly-editor-plugin>-->
</div>
</div>
<div class="buttons">
<button id="uppercase" type="button" class="btn btn-primary">Uppercase</button>
<button id="lowercase" type="button" class="btn btn-success">Lowercase</button>
<button id="extraSpace" type="button" class="btn btn-success">Remove Extra Spaces</button>
<button id="extraLine" type="button" class="btn btn-success">Remove Extra Lines</button>
<button id="charWordCount" type="button" class="btn btn-warning">Character & Word Count</button>
<button id="clearAll" type="button" class="btn btn-danger">Clear The Page</button>
</div>
<div class="paraInfo">
<input type="textbox" placeholder="0" id="characterCount"> Characters & <input type="textbox" placeholder="0" id="wordCount"> Words
</div>
<!-- Dictionary part -->
<div id="dictionary">
<h1 class="my-4 text-center">To Open Dictionary Application:
<a id="dicAnchor" href="dictionary2.html" target="_blank">Click Here</a>
</h1>
</div>
</div>
<footer>
<h4>©All Rights Reserved to Atanu Mondal(2023)</h4>
</footer>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Grammarly SDk
<script src="https://cdn.jsdelivr.net/npm/@grammarly/editor-sdk?clientId=client_JYBJYxLC1PpEMo2wgmLfRW"></script>
-->
<!-- Javascript file for text analyzer -->
<script src="textAnalyzer.js"></script>
</body>
</html>