-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Filler Text Generator</title>
<!-- Styles -->
<link rel="stylesheet" href="Normalize.css" type="text/css" media="all" />
<link rel="stylesheet" href="styles.css" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&family=PT+Sans:wght@400;700&family=Staatliches&display=swap" rel="stylesheet">
</head>
<body>
<header id="header">
<div id="div-translate">
<span><a href="#">English</a></span>
<span><a href="spanish.html">Español</a></span>
</div>
</header>
<main>
<h1 id="title">Tired of boring Lorem Ipsum?</h1>
<form id="form" accept-charset="utf-8">
<label for="paragraphs">Paragraphs:</label>
<input type="number" min="1" name="paragraphs" id="paragraphs" placeholder="5" />
<button id="submit-btn" type="submit">Generate</button>
</form>
<article id="container-paragraphs">
</article>
</main>
<!-- JS -->
<script src="app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>