-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<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">
<title>Template-Generator</title>
</head>
<body>
<div class="container">
<div class="template-wrapper">
<div class="template-section">
<pre>
<code class="code-section"></code>
</pre>
</div>
<button class="copy">copy</button>
</div>
<div class="side-section">
<div class="input-section">
<input autocomplete="off" class="input" type="text" name="iWord" id="inWord"
placeholder="WORD TO BE REPLACE">
</div>
<div class="input-section">
<input autocomplete="off" class="input" type="text" name="iWord" id="oWord"
placeholder="REPLACEMENT WORD">
</div>
<div>
<textarea class="template-input" name="template" id="template"
placeholder="GIVE ME A TEMPLATE"></textarea>
</div>
<button class="btn" type="submit">GENERATE</button>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>