-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
112 lines (110 loc) · 3.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="pt">
<head>
<title>Birolipsum</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"
type="text/javascript"
></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-151350004-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-151350004-1");
</script>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style/style.css" />
<script src="scripts/script.js"></script>
<link rel="shortcut icon" type="image/png" href="Assets/biru5.jpg" />
</head>
<body>
<div class="main-content">
<header>
<div>
<img
alt="biroliro"
class="avatar"
id="Bolsoroleta"
src="Assets/biru5.jpg"
/>
</div>
<h1>Birolipsum</h1>
<div class="menu">
<a href="./index.html" id="selected">Gerador</a>
<a href="./sobre.html">Sobre</a>
<a href="./ajudar.html">Contribuir</a>
</div>
</header>
<div class="dark-mode">
<label class="switch">
<input type="checkbox" id="dark-mode-enabled">
<span class="slider round"></span>
</label>
<p>Dark Mode</p>
</div>
<div style="text-align: right;">
<div id="paragraphs">
<form action="" title="paragrafos:">
<input
label="paragrafos"
type="number"
name="paragrafos"
style="width:5%;"
class="form-control"
id="numP"
value="1"
min="0"
/>
<label for="paragrafos">Parágrafo(s)</label>
<button type="button" id="generate">Gerar</button>
</form>
</div>
<blockquote class="quote">
<textarea
label="birolipsum"
rows="8"
style="width: 100%;"
id="birolipsum"
disabled
></textarea>
<footer>Biroliro</footer>
<button type="button" id="copyButton">Copiar</button>
<div id="containerBlock">
<br /><br />
<div id="twitterButtonContainer"></div>
</div>
</blockquote>
<div id="twitterButtonBase">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="hello my friend"
data-url="https://izmcm.github.io/birolipsum/"
data-hashtags="birolipsum"
data-show-count="false"
>Tweet</a
><script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
</div>
</div>
<footer>
<p>Made by Izabella Melo & Renata Faria</p>
</footer>
</body>
</html>