-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Gerados de Nomes de Roupas</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="clipboard.js-master/dist/clipboard.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="well titulo">Gerador Nomes de Roupas</div>
<div class="container">
<div class="row">
<div class="col-md-offset-4 col-md-3">
<p class="titulo">Insira nome do produto</p>
<input type="text" id="produto" class="form-control" name="produto"><br>
<div class="row">
<div class="col-md-12">
<input type="button" name="botao" class="btn btn-primary botao" onclick="produto()" value="Criar Nome">
<div id="nomeFinal" class="nome-produto">
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>