-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise.html
More file actions
45 lines (40 loc) · 1.35 KB
/
exercise.html
File metadata and controls
45 lines (40 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "utf-8">
<title> Electonics Learning Ecosystem</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">ELE</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="/Exercises">Exercises</a></li>
</ul>
<ul class="nav navbar-nav navbar-right" >
<li><a href="/form">Login</a></li>
<li><a href="#">Register</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<h1>Lista de Exercicios Disponiveis</h1>
<form method="post" action="Exercisees">
<button type="submit" value="1" name="value" class="btn btn-primary">Give it now!</button>
</form>
</div>
<div class="col-sm-2"></div>
</div>
</div>
</body>
</html>