-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (42 loc) · 1.85 KB
/
about.html
File metadata and controls
43 lines (42 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impact calculator</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="img/surf.svg" type="image/icon type">
</head>
<body>
<header class="header">
<nav class="navbar" aria-label="Main Navigation">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="impact-calculator.html">Impact Calculator</a></li>
<li><a href="best-practices.html">Best Practices</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<main>
<div class="scrollable-container">
<h1>About Us</h1>
<section class="about-cards">
<div class="about-card">
<h2 class="card-header">Who are we?</h2>
<p><img src="img/university.svg" alt="University Icon"> We are six Computational Social Science students at the University of Amsterdam. This website is our Digital Behavioural Change Intervention to change researcher's coding habits to be more environmentally sustainable. </p>
</div>
<div class="about-card">
<h2 class="card-header">Our goals:</h2>
<p><img src="img/awareness.svg" alt="Awareness Icon"> Spread awareness</p>
<p><img src="img/target.svg" alt="Impact Icon"> Change specific behaviour</p>
</div>
<div class="about-card">
<h2 class="card-header">Our collaborators:</h2>
<p><img src="img/surf.svg" alt="SURF Logo"> We are in collaboration with SURF; This website aims to help SURF's interests. </p>
</div>
</section>
</div>
</main>
</body>
</html>