-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_5.html
50 lines (45 loc) · 1.46 KB
/
style_5.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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>form-style.css</title>
<link rel="stylesheet" href="css/form-style.min.css">
</head>
<body>
<div class="container">
<header>
<div class="row">
<div class="col-md-12">
<h1><a href="/">form-style.css</a></h1>
</div>
</div>
<ul class="paging">
<li><a href="/">style 1</a></li>
<li><a href="style_2.html">style 2</a></li>
<li><a href="style_3.html">style 3</a></li>
<li><a href="style_4.html">style 4</a></li>
<li><a href="style_5.html" class="active">style 5</a></li>
</ul>
</header>
<hr>
<div class="ui-buttons">
<h1><a href="#">Ul buttons</a></h1>
</div>
<div class="buttons-container">
<a class="btn blue">Blue Button</a>
<a class="btn green">Green Button</a>
<a class="btn red">Red Button</a>
<a class="btn purple">Purple Button</a>
<a class="btn orange">Orange Button</a>
<a class="btn yellow">Yellow Button</a>
</div>
<!--<div class="buttons-container">
<input class="btn-3" type="button" value="Input Button">
<input class="btn-3" type="submit" value="Input Submit">
<a class="btn-3" href="javascript:void(0);">Anchor Button</a>
<button class="btn-3" type="submit" value="Submit">Submit</button>
<button class="btn-3" type="reset" value="Reset">Reset</button>
</div>-->
</div>
</body>
</html>