-
Notifications
You must be signed in to change notification settings - Fork 0
/
alert-boxes.html
113 lines (66 loc) · 3.7 KB
/
alert-boxes.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Cupcake Admin Mobile</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style/reset.css" />
<link rel="stylesheet" type="text/css" href="style/root.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/toogle.js"></script>
</head>
<body>
<!-- start header -->
<div id="header">
<a href="#"><img src="img/logo.png" width="77" height="24" alt="logo" class="logo" /></a>
<a href="index.html" class="button back"><img src="img/back-button.png" width="15" height="16" alt="icon" /></a>
<a href="#" class="button search"><img src="img/search.png" width="16" height="16" alt="icon"/></a>
<a href="form.html" class="button create"><img src="img/create.png" width="16" height="16" alt="icon"/></a>
<div class="clear"></div>
</div>
<!-- end header -->
<!-- start searchbox -->
<div class="searchbox">
<form id="form1" name="form1" method="post" action="">
<input type="text" name="textfield" id="textfield" class="txtbox" />
</form>
</div>
<!-- end searchbox -->
<!-- start page -->
<div class="page">
<!-- start error page -->
<div class="simplebox">
<h1 class="titleh">Alert Boxes</h1>
<div class="content">
<div class="albox warningbox">
<b>Warning :</b> This is a warning placed text message.
<a href="#" class="close tips" title="close">close</a>
</div>
<div class="albox succesbox">
<b>Succes :</b> This is a succes placed text message.
<a href="#" class="close tips" title="close">close</a>
</div>
<div class="albox informationbox">
<b>Information :</b> This is an information placed text message.
<a href="#" class="close tips" title="close">close</a>
</div>
<div class="albox errorbox">
<b>Error :</b> This is an error placed text message.
<a href="#" class="close tips" title="close">close</a>
</div>
</div>
</div>
<!-- end error page -->
<!-- start top button -->
<div class="topbutton"><a href="#header"><span>Top</span></a></div>
<!-- end top button -->
<!-- start footer -->
<div class="footer">
© 2012 - Cupcake Mobile by <a href="http://themeforest.net/user/egemem" target="_blank">egemem</a>
</div>
<!-- end footer -->
<div class="clear"></div>
</div>
<!-- end page -->
</body>
</html>