-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (72 loc) · 2.18 KB
/
Copy pathindex.html
File metadata and controls
87 lines (72 loc) · 2.18 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
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>IntSaV Migration</title>
<!-- IntSaV Logo-->
<link href="assets/img/logo.png" rel="icon" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600|Raleway:400,600|Poppins:400,600" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<style>
body {
font-family: 'Open Sans', sans-serif;
text-align: center;
padding: 60px 20px;
background: #f9f9f9;
}
.logo {
max-height: 70px;
margin: 10px;
}
h1 {
font-size: 2.2rem;
font-weight: 700;
margin-top: 20px;
}
h2 {
font-size: 1.3rem;
color: #555;
margin-bottom: 30px;
}
a {
color: #007bff;
font-weight: 600;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 900px;
margin: auto;
background: #fff;
padding: 40px;
border-radius: 12px;
box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="container">
<!-- Logos -->
<div>
<img src="assets/img/logo.png" alt="IntSaV Logo" class="logo" />
<!-- <img src="assets/img/UWL-logo.jpg" alt="University of West London Logo" class="logo" /> -->
</div>
<!-- Title + Text -->
<h1>Intelligent Sensing and Vision (IntSaV)</h1>
<h2>Specialised in AI-driven Innovations in Healthcare and Biomedicine</h2>
<p style="font-size: 1.1rem; line-height: 1.6; text-align: justify;">
We are excited to announce that the Intelligent Sensing and Vision (IntSaV) Lab is now part of the newly launched
<b>THRIVE Research Centre</b> – a hub for collaborative, interdisciplinary healthcare research at the University of West London.
</p>
<p style="font-size: 1.1rem; margin-top: 20px;">
Visit our new home and explore our latest projects:
<a href="https://www.thrive-centre.com" target="_blank">www.thrive-centre.com</a>
</p>
</div>
</body>
</html>