-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (56 loc) · 2.3 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Textogram</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!--
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">-->
<style>
.hi {
background-color: lightgrey;
width: 800px;
border: 15px solid black;
padding: 5rem;
margin: 20px;
padding-left: 5rem;
}
.hello{
padding-left: 25rem;
padding-top: 7rem;
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<nav id="main-nav" class="flex items-cen justify">
<div class="left flex items-cen">
<a href="index.html" style="font-size:22px; font-weight: bold;" >Textogram</a>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
</div>
</div>
</nav>
</div>
<div class="hello">
<div class="hi">
Hello there, this is a webApp where you can format your text as your wish.
<br>Switch on the toggle, and click on Format. You will get your desired output.
<br>If you want to perform some more operations on your text feel free to <a href=contact.html>contact</a> me.
</div>
</div>
</body>
</html>