-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.39 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.39 KB
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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- link rel="stylesheet" href="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="icon" href="_images/python-icon.ico">
</head>
<body>
<div class="container-fluid">
<div class="jumbotron">
<h1>Calculadora</h1>
<p>Integração de Python, CSS, HTML e JavaScript</p>
<td>Criado por Wyctor Fogos da Rocha</td>
</div>
<br>
<div class="row">
<div class="col-xs-4">
<img style="width:50%" src="_images/soma.png" />
<br>
<button class="btn btn-info"><a style="color:white" href="_views/soma.html">Soma</a></button>
</div>
<div class="col-xs-4">
<img style="width:40%" src="_images/multiplicacao.jpg" />
<br>
<button class="btn btn-warning"><a style="color:white" href="_views/multiplicacao.html">Multiplicação</a></button>
</div>
<div class="col-xs-4">
<img style="width:50%" src="_images/fatorial.png" />
<br>
<button class="btn btn-success"><a style="color:white" href="_views/fatorial.html">Fatorial</a></button>
</div>
</div>
</div>
</body>