-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (51 loc) · 3 KB
/
index.php
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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<?php include "_head.php" ?>
<title>Convert Text Case - Convert upper case to lower case, lower case to upper case and many more options!</title>
<meta name="description" content="Simple tool to convert your text to any case such as upper case to lower case, lower case to upper case, camel case, title case, snake case and kebab case" />
<meta name="keywords" content="convert case, convert case online, uppercase to lowercase, lowercase to upper, text tool, text converter, silly tools" />
<meta name="robots" content="INDEX,FOLLOW" />
<link rel="icon" href="images/icon-clipboard.svg" type="image/x-icon" />
<link rel="shortcut icon" href="images/icon-clipboard.svg" type="image/x-icon" />
</head>
<body>
<?php include "_nav.php" ?>
<div class="grid-container">
<div class="grid-x grid-padding-x grid-padding-y">
<?php include "_ad.php" ?>
<div class="large-12 cell text-center">
<h1 class="text-center">Convert Text Case</h1>
<h3> Simple tool to convert your text to any case</h3>
</div>
</div>
<div class="grid-x grid-padding-x">
<div class="large-12 medium-12 cell">
<form>
<div class="grid-x grid-padding-x">
<div class="large-12 cell text-converter-container">
<label class="center">Simply enter your text and choose the case you want to convert it to.</label>
<div class="container-txt">
<textarea name="txtConvert" id="txtConvert" placeholder="Type/Paste your text here.." required></textarea>
<a href="#" class="btn-copy" data-tooltip title="Copy to Clipboard"><img src="images/icon-clipboard.svg" alt="Copy to Clipboard"></a>
</div>
<div class="callout btns-container">
<div class="columns"><a href="#" class="button btn-upperCase">UPPERCASE</a></div>
<div class="columns"><a href="#" class="button btn-lowerCase">lowercase</a></div>
<div class="columns"><a href="#" class="button btn-camelCase">camelCase</a></div>
<div class="columns"><a href="#" class="button btn-titleCase">Title Case</a></div>
<div class="columns"><a href="#" class="button btn-capitalize">Capitalize</a></div>
<div class="columns"><a href="#" class="button btn-decapitalize">decapitalize</a></div>
<div class="columns"><a href="#" class="button btn-snakeCase">snake_case</a></div>
<div class="columns"><a href="#" class="button btn-kebabCase">kebab-case</a></div>
</div>
<div class="callout counter"><span>Character Count: <span class="c-count">0</span> | Word Count: <span class="w-count">0</span> </span></div>
</div>
</div>
</form>
</div>
</div>
</div>
<?php include "_footer.php" ?>
</body>
</html>