-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjunior2.html
45 lines (35 loc) · 1.1 KB
/
junior2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio | Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper login">
<div class="contain content">
<header class="header">
<div class="contain">
<h1><img src="images/logo.jpg" alt="brushell"></h1>
</div>
</header>
<form class="form">
<fieldset>
<div class="col">
<label>USUARIO <span class="tooltip">?</span></label>
<input type="text">
<span class="error">revisa este campo</span>
<label>CONTRASEÑA <span class="tooltip">?</span></label>
<input type="password">
<span class="error">revisa este campo</span>
</div>
</fieldset>
<input type="submit" value="LOGIN">
</form>
</div>
</div>
</body>
</html>