-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
94 lines (82 loc) · 1.45 KB
/
index.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
<html>
<head>
<title>
DIGI NINJA DEV
</title>
</head>
<style type="text/css">
#wrapper
{
margin: 0 auto;
width: 100%;
height: auto;
}
#header
{
position: relative;
padding: 5px;
width: 95%;
height: 100px;
font-size: 24px;
font-family: sans-serif;
text-align: center;
}
#content
{
position: relative;
height: auto;
padding: 25px;
font-size: 18x;
font-weight: bold
}
#content .left
{
position: relative;
float: left;
text-align: left;
height: 100px;
width: 50%;
}
#content .right
{
position: relative;
float: left;
text-align: right;
height: 100px;
width: 50%;
}
#content .full_page
{
position: relative;
float: left;
text-align: center;
height: 100px;
width: 100%;
}
</style>
<script type="text/javascript">
function test()
{
alert('There is no place like 127.0.0.1');
}
</script>
<body>
<div id="wrapper">
<div id="header">
<span>DIGI TEST</span>
</div>
<div id="content">
<div class="left">
Aligned Left
</div>
<div class="right">
Aligned Right
</div>
<div class="full_page">
Centered Full Page <br><br>
<input type="button" value="Test JavaScript Alert Function" onclick="test()" />
</div>
</div>
</div>
</body>
</html>