-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lorem Generator</title>
<!------- css ------------->
<link rel="stylesheet" href="/css/styles.css">
<!--------- font-awesome ----------->
<link rel="stylesheet" href="/css/all.css">
</head>
<body>
<!-- section -->
<section class="section-center">
<h1>LOREM IPSUM TEXT GENERATOR</h1>
<form class="lorem-form">
<label for="number">Select number of paragraph:</label>
<input type="number" name="number" id="number" placeholder="0"
maxlength="2">
<button type="submit" class="btn">generate</button>
<!-- <button type="button" class="btn copy">copy</button> -->
</form>
<article class="lorem-text"></article>
</section>
<!-- end of section -->
<!--------- footer ------->
<footer>
<div class="footer">
<span>
Copyright © <span id="date"></span> | All Rights Reserved | made by Marsiya Issah |
<span>
<span class="span">Follow my</span>
<a
href="https://www.linkedin.com/in/marsiya-issah-8a481782/"
target="_blank"
>
<i class="fab fa-linkedin linkedin"></i>
</a>
<span class="span">Page</span>
</div>
</footer>
<!-- end of footer -->
<!-- javascript -->
<script src="./js/index.js"></script>
</body>
</html>