-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (80 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>LondonJS - Welcome</title>
<style type="text/css">
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background: #f0da4f;
font-family: Arial, "sans-serif";
}
.wrap {
width: 100%;
max-width: 1000px;
margin: -150px 0 auto;
height: 305px;
position: absolute;
top: 50%;
}
.logobox {
width: 50%;
display: inline-block;
float: left;
text-align: right;
padding-right: 40px;
}
.content {
width: 50%;
display: inline-block;
float: left;
padding-left: 40px;
font-size: 30px;
border-left: 1px solid;
}
.handles_list{
list-style: none;
padding: 0;
margin-top: 10px;
}
.handles_list li {
margin-bottom: 20px;
}
.the_hashtag{
margin-top: 21px;
font-size: 60px;
margin-left: 0px;
margin-bottom: 44px;
font-style: italic;
font-weight: bold;
}
</style>
</head>
<body>
<div class=wrap>
<header class=logobox>
<img src="./imgs/logo_londonjs.jpeg">
</header>
<article class=content>
<p class=the_hashtag>
#londonJSrocks
</p>
<ul class=handles_list>
<li>
Tw: <b>@london_JS</b>
</li>
<li>
Fb: <b>londonJSCommunity</b>
</li>
<li>
Web: <b>londonjs.uk</b>
</li>
</ul>
</article>
</div>
</body>
</html>