-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 3.95 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
<!doctype html>
<html lang="en">
<head>
<title>Babbling Binary with Illinois WCS</title>
<meta name="description" content="Code secret messages using binary with WCS! Part of the WCS Outreach workshop at Sail 2021." />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel='icon' href='assets/favicon.ico' type='image/x-icon'/>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="http://www.illinoiswcs.org"><img alt="Illinois WCS MBTI Board"
src="assets/logo.png" height=35></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="#">Converter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="background.html">How does it work?</a>
</li>
</div>
</div>
</nav>
<div class="container">
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1>babbling binary with illinois wcs</h1>
<p>use this message decoder and encoder to send secret messages to your friends!</p>
</div>
</section>
<div class="card">
<div class="card-body">
<h2 class="card-title">message encoder</h2>
<p class="card-subtitle mb-2">write a super secret message for your friends! note: does not accept non-ascii characters.</p>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">message to encode</span>
<input type="text" class="form-control" placeholder="Hi there!" aria-label="encode"
aria-describedby="basic-addon1" id="encode-input">
<button class="btn btn-outline-secondary" type="button" id="encode-button">encode!</button>
</div>
<p class="text-break"><output id="encode-output"></output></p>
</div>
</div>
<br>
<div class="card">
<div class="card-body">
<h2 class="card-title">message decoder</h2>
<p class="card-subtitle mb-2">find out what your friend sent you!</p>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">message to decode</span>
<input type="text" class="form-control" placeholder="00011000" aria-label="decode"
aria-describedby="basic-addon1" id="decode-input">
<button class="btn btn-outline-secondary" type="button" id="decode-button">decode!</button>
</div>
<p class="text-break"><output id="decode-output"></output></p>
</div>
</div>
</main>
</div>
<br>
<script src="index.js"></script>
</body>