This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (151 loc) · 3.9 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<title>northumbrian data - ethical AI consultancy</title>
<link
href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700;800&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" type="image/png" href="simple-logo.png" />
<style>
html,
body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: top;
margin-top: 35px;
margin-bottom: 35px;
align-items: center;
font-family: Avenir, sans-serif;
background-color: #ffffff;
text-align: center;
}
h1 {
font-family: "Comfortaa", sans-serif;
font-weight: 800;
font-size: 48px;
color: #000000;
margin-top: 40px;
}
.simple-logo {
display: block;
margin: 50px auto 20px auto;
width: 50px;
}
.full-logo {
display: block;
margin: 0 auto 25px auto;
max-width: 250px;
}
p {
font-size: 18px;
color: #595959;
line-height: 1.5;
margin-top: 10px;
max-width: 500px;
margin: 50px auto 0 auto;
}
p.intro {
margin-top: 50px;
}
p.team-description {
font-size: 0.9em;
margin-top: 20px;
}
p.bio-name {
font-weight: bold;
}
p.bio-job {
margin-top: 3px;
font-style: italic;
}
a {
color: #000000;
text-decoration: none;
font-weight: 700;
}
.circle-image {
width: 201px;
height: 201px;
border-radius: 50%;
overflow: hidden;
}
.circle-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.team-container {
margin-top: 50px;
}
.bio-container {
display: flex;
justify-content: space-around;
align-items: center;
margin-top: 50px;
max-width: 800px;
}
.bio-container > div {
margin-left: 30px;
margin-right: 30px;
}
</style>
</head>
<body>
<img
src="simple-logo.png"
alt="northumbrian data logo"
class="simple-logo"
/>
<img
src="full-logo.png"
alt="northumbrian data full logo"
class="full-logo"
/>
<p class="intro">
northumbrian data is an ethical AI consultancy that provides expert advice
and services to businesses looking to develop AI solutions that are fair,
transparent, and accountable. Contact us at
<a href="mailto:[email protected]"
>
to learn more.
</p>
<div class="team-container">
<h2>The Team</h2>
<p class="team-description">
Our team has decades of experience in developing, managing and executing
AI and data projects in the medical, health and instrumentation space.
We have been working together now for a decade across academia and
industry.
</p>
<div class="bio-container">
<div class="bio">
<div class="circle-image">
<img src="cn.jpg" alt="Dr Chas Nelson" />
</div>
<p class="bio-name">Dr Chas Nelson</p>
<p class="bio-job">Data & AI Consultant</p>
</div>
<div class="bio">
<div class="circle-image">
<img src="ws.jpg" alt="Bill Shepherd" />
</div>
<p class="bio-name">Bill Shepherd</p>
<p class="bio-job">AI Project Consultant</p>
</div>
<div class="bio">
<div class="circle-image">
<img src="bo.jpg" alt="Professor Boguslaw Obara" />
</div>
<p class="bio-name">Prof. Boguslaw Obara</p>
<p class="bio-job">Academic AI Consultant</p>
</div>
</div>
</div>
</body>
</html>