-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtequila.html
40 lines (30 loc) · 983 Bytes
/
tequila.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Login pour le service gaspar</title>
<link rel="stylesheet" href="./styles/css.css" />
</head>
<body>
<div class="container">
<!-- columns should be the immediate child of a .row -->
<div class="box box_header">
<div>One</div>
</div>
<!-- just use a number and class 'column' or 'columns' -->
<div class="box box_content">
<div class="content box_image">IMAGE</div>
<div class="content box_content_right">
<div class="form">
<label for="inputLog">Username</label><input id="inputLog" type="text" width="150px"><br/>
password
</div>
</div>
</div>
<!-- there are a few shorthand columns widths as well -->
<div class="box box_footer">
<div class="one-third column">1/3</div>
</div>
</div>
</body>
</html>