44 lines
753 B
PHP
44 lines
753 B
PHP
|
<!doctype html>
|
|||
|
<html lang="en">
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<title>Linux Powered</title>
|
|||
|
<style>
|
|||
|
@import url(//fonts.googleapis.com/css?family=Lato:700);
|
|||
|
|
|||
|
body {
|
|||
|
margin:0;
|
|||
|
font-family:'Lato', sans-serif;
|
|||
|
text-align:center;
|
|||
|
color: #999;
|
|||
|
}
|
|||
|
|
|||
|
.welcome {
|
|||
|
width: 300px;
|
|||
|
height: 200px;
|
|||
|
position: absolute;
|
|||
|
left: 50%;
|
|||
|
top: 50%;
|
|||
|
margin-left: -150px;
|
|||
|
margin-top: -100px;
|
|||
|
}
|
|||
|
|
|||
|
a, a:visited {
|
|||
|
text-decoration:none;
|
|||
|
}
|
|||
|
|
|||
|
h1 {
|
|||
|
font-size: 32px;
|
|||
|
margin: 16px 0 0 0;
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div>
|
|||
|
<h1>“Microsoft has had clear competitors in the past. It’s a good thing we have museums to document that.” </h1>
|
|||
|
<h2>Bill Gates<h2>
|
|||
|
<center><img src="home.png"/></center>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|