-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 1.44 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<title>Pirical Limited - Home</title>
<meta name="description" content="Applications and Architecture Consultancy">
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
padding: 2rem;
}
.logo {
order: 0;
flex: 0 1 auto;
align-self: auto;
}
.blurb {
order: 0;
flex: 0 1 auto;
align-self: auto;
padding: 0rem 2rem;
}
h1 {
font-size: large;
padding-bottom: 0rem;
margin: 1.2rem 0rem 0rem;
}
h2 {
font-size: medium;
margin: 0px;
}
p {
margin: 0px;
}
.efface {
padding-top: 2rem;
font-size: small;
color: gray;
}
</style>
</head>
<body lang="EN-GB">
<div class="container">
<div class="logo">
<img width="181" height="79" src="img/logo.png">
</div>
<div class="blurb">
<h1>Pirical Limited</h1>
<h2>Architecture and Applications Consultancy</h2>
<hr />
<p>0/2, 34 St. Andrews Square</p>
<p>Glasgow</p>
<p>G1 5PP</p>
<div class="efface">
<p>Registered in Scotland: SC334194</p>
<p>VAT Registration: 923 5730 28</p>
</div>
</div>
</body>
</html>