-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.63 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.63 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400&family=Lato:wght@300;400&display=swap" rel="stylesheet">
<title>JavaScript File Parser</title>
</head>
<body>
<section class="container">
<nav>
<div class="brandName">
<img src="./assets/javascript-js.svg" alt="appLogo">
<h3>JavaScript File Parser</h3>
</div>
<div class="linkMenu">
<ul>
<li id="navContactBtn">Contact</li>
</ul>
</div>
</nav>
<section class="content">
<div class="search">
<input type="text" id="searchField" placeholder="Enter a word">
</div>
<div class="file">
<label id=fileLabel>
<input type="file" id="fileField">
Upload File
</label>
</div>
<div class="counter">
<h2>The searched word, '<span id="searchedWord"></span>', appeared <span id="numWords"></span> times.</h2>
</div>
<div class="results">
<div class="resultsLayout">
<label>File Contents:</label>
<div class="fileContents">
<span id="fileContent"></span>
</div>
</div>
</div>
</section>
</section>
<footer>
<div class="footerContent">
<p>© Taylor Brauer | <span id="currentYear"></span></p>
</div>
</footer>
<!-- ####### The Modal ########## -->
<div id="contactMeModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>Contact Me</h2>
</div>
<div class="modal-body">
<h4><a href="https://www.taylorcbrauer.com" target="_blank">My Website</a></h4>
<h4><a href="https://instagram.com/taylorcbrauer" target="_blank">My Instagram</a></h4>
<h4><a href="https://twitter.com/taylorcbrauer" target="_blank">My Twitter</a></h4>
</div>
<div class="modal-footer">
<h3></h3>
</div>
</div>
</div>
<!-- ####### /The Modal ########## -->
</body>
<script src="app.js"></script>
</html>