-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://alsabagh-dev.github.io/images/favicon.svg" type="image/x-icon">
<title>Lorem Ipsum</title>
<!-- styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="section-center">
<h3> tired of boring lorem Ipsum</h3>
<form class="lorem-form">
<label for="amount">paragraphs:</label>
<input type="number" id="amount" name="amount" placeholder="5" min="1" max="9">
<div class="btn-contianer">
<button type="submit" class="btn">generate</button>
<button type="button" class="btn copy" disabled>copy</button>
</div>
</form>
<article class="lorem-text">
</article>
</section>
<!-- javascript -->
<script src="app.js"></script>
</body>
</html>