-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (111 loc) · 2.21 KB
/
index.html
File metadata and controls
137 lines (111 loc) · 2.21 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<title>Lebby Git Hub Home Page</title>
<link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
<style type="text/css">
body
{
background-color: silver;
}
div#wrapper
{
margin: 0 auto;
width:960px;
box-shadow: 10px 10px 20px #000000;
-moz-box-shadow: 10px 10px 20px #000000;
-webkit-box-shadow: 10px 10px 20px #000000;
}
div#page
{
text-align: left;
background-color: white;
box-shadow: 0px 0px 15px #FFFFFF;
-webkit-box-shadow: 0px 0px 15px #FFFFFF;
-moz-box-shadow: 0px 0px 15px #FFFFFF;
}
section#main
{
min-height: 500px;
height:auto !important;
height: 500px;
}
header
{
height: 50px;
background-color: black;
text-align: center;
color: white;
font-family: 'Rouge Script', cursive;
font-size: 40px;
text-shadow: 2px 2px 2px #FFFFFF;
}
nav
{
background-color: silver;
height: 30px;
font-family: 'Rouge Script';
font-size: 30px;
padding: 10px;
padding-top: 0px;
}
article
{
padding: 5px;
border: 1px solid #000000;
border-radius: 15px;
background-color: #F0F0F0;
margin: 10px;
box-shadow: 0px 0px 3px #000000;
-webkit-box-shadow: 0px 0px 3px #000000;
-moz-box-shadow: 0px 0px 3px #000000;
}
div#main
{
float: left;
}
section#main
{
}
section#header
{
-webkit-box-shadow: 0 4px 3px -3px black
-moz-box-shadow: 0 4px 3px -3px black
box-shadow: 0 4px 3px -3px black
}
footer{
color: white;
background-color: black;
height: 40px;
padding-top: 10px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="page">
<section id="header">
<header>
Lebby Home Page
</header>
<nav>
<a href="" >About</a>
<a href="" >Projects</a>
</nav>
</section>
<section id="main">
<article id="about">
<h1>About Me</h1>
I'm "... ... ..." aka Lebby. I'm a software developer, an I.T. passionate, and many other things.
</article>
<article id="Projects">
<h1>Projects</h1>
<a href="lebby.github.com/ForScene/" >ForScene</a>
ForScene is a framework/library to implements game/application/presentation in java and deploy in all PlayN supported platforms
( actually: Flash,HTML/js,Android and obvious java)
</article>
</section>
<footer>This page is hosted on GitHub</footer>
</div>
</div>
</body>
</html>