-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
121 lines (113 loc) · 6.23 KB
/
app.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en" class="h-100">
<head>
<title>TACO CAT: A Coding Exercise</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/5db21ba9c6.js" crossorigin="anonymous"></script>
<link href="/css/site.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/icon.png">
</head>
<body class="d-flex flex-column h-100">
<!-- ==== Nav Section ==== -->
<nav class="navbar navbar-expand-md navbar-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="img/icon.png" class="d-inline-block align-text-top" alt="Adam Nihiser Logo" width="24" height="24"> TACO CAT</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/app.html">The App</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/code.html">The Code</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://anihiser-portfolio.netlify.app/">About</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://anihiser-portfolio.netlify.app/">Git Repo</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ==== Main Section ==== -->
<main class="flex-shrink-0">
<div class="container mt-5">
<div class="row row-cols-1 row-cols-lg-2">
<!-- === Left Side === -->
<div class="col">
<h1 class="display-5 fw-bold lh-1 mb-3"> TACO CAT: A Coding Project</h1>
<h4 class="lead mb-3">
Taco Cat is a palindrome. A Palindrome is a word, phrase or sequence that reads the same backward as forward. Type in something and find out if it is a palindrom!
</h4>
</div>
<!-- === Right Side === -->
<div class="col">
<h5 class="border-1 border-bottom border-info"> Enter A Palindrome to Verify.</h5>
<form class="row gx-2 gy-2">
<div class="col">
<input id="userString" type="text" class="form-control" placeholder="Enter A String" aria-label="Enter A String">
</div>
<div class="col-12">
<button type="button" id="btnSubmit" class="btn btn btn-info">Check Now</button>
</div>
<div class="mt-5 invisible fade show" id="alert" role="alert">
<h4 class="alert-heading" id="heading">
<!-- Insert Heading Here -->
</h4>
<hr>
<p class="mb-0" id="msg">
<!-- Insert Message Here -->
</p>
</div>
</form>
</div>
</div>
</div>
</main>
<!-- ==== Footer Section ==== -->
<footer class="footer mt-auto py-3 sticky-footer">
<div class="container-fluid">
<div class="row row-cols-1 row-cols-lg-3 gy-2">
<div class="col order-last order-lg-first text-light d-flex align-items-center justify-content-start">
<div><span class="text-muted">©2021</span> Adam Nihiser | [email protected]</div>
</div>
<div class="col d-flex align-items-center justify-content-start justify-content-lg-center">
<img src="/img/adam_p_nihiser_logo_notitle.png" alt="Adam Nihiser Logo" height="48">
</div>
<div class="col d-flex align-items-center justify-content-start justify-content-lg-end">
<div class="row">
<div class="col social"><a href="https://www.linkedin.com/in/anihiser/" target="_blank"><i class="fab fa-linkedin fa-2x"></i></a></div>
<div class="col social"><a href="https://github.com/apnihiser" target="_blank"><i class="fab fa-github fa-2x"></i></a></div>
<div class="col social"><a href="https://twitter.com/MerkkieMer" target="_blank"><i class="fab fa-twitter fa-2x"></i></a></div>
<div class="col social"><a href="https://www.youtube.com/channel/UCZl9auJaZm4S3sOHCBcxgEQ" target="_blank"><i class="fab fa-youtube fa-2x"></i></a></div>
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous">
</script>
<script src="/js/site.js"></script>
<script>
document.getElementById("btnSubmit").addEventListener("click", getValue);
</script>
</body>
</html>