-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmine.html
More file actions
56 lines (52 loc) · 1.43 KB
/
Copy pathmine.html
File metadata and controls
56 lines (52 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>
Mine
</title>
<style>
body {
margin: 0;
font-family: sans-serif;
}
#box {
width: 200px;
border: 2px ridge #c4c4c4;
background: #ccc;
border-radius: 10px;
box-shadow: 0px 5px 9px rgba(0,0,0,0.5);
padding: 1em;
margin: 2em auto 0;
}
h1 {
border-bottom: 2px groove #fff;
text-align: center;
color: #999;
text-shadow: -1px -1px 0px rgba(255,255,255,1);
font-size: 24;
padding-bottom: .7em;
}
#intro {
text-align: center;
}
</style>
</head>
<body>
<div id="box">
<h1>
This is my landing page
</h1>
<p id="intro">
Just a small list of links to sites I visit a lot.
</p>
<ul>
<li><a href="http://google.com/gmail">Gmail</a></li>
<li><a href="http://pinterest.com">Pinterest</a></li>
<li><a href="http://youtube.com">Youtube</a></li>
</ul>
<p>
Feeling <a href="http://www.google.com">lucky?</a>
</p>
</div>
</body>
</html>