-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
59 lines (57 loc) · 2.5 KB
/
template.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Ethics Guide</title>
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="shortcut icon" href="./assets/img/favicon.ico" />
</head>
<body>
<header class="header">
<!-- Nav -->
<nav class="nav">
<a href="index.html" class="nav__logo"> <img class="logo" src="./assets/img/logo.png" alt="" srcset=""></a>
<ul class="menu">
<li class="menu__item"><a href="index.html">Introduction</a></li>
<li class="menu__item"><a href="game.html">Guide</a></li>
<li class="menu__item"><a href="principles.html">Principles</a></li>
<li class="menu__item"><a href="tools.html">Tools</a></li>
<li class="menu__item"><a href="tradeoffs.html">Trade-offs</a></li>
<li class="menu__item"><a href="about.html">About</a></li>
</ul>
</nav>
<!-- Main Section -->
<section class="principal">
<div class="content__title">
<h1 class="title">Ethics in AI</h1>
<h3 class="subtitle">Guide for Artificial Intelligence Ethical Requirements Elicitation</h3>
<a href="game.html" class="button__game">Start Guide</a>
</div>
<div>
<picture>
<img
class="illustration"
src="./assets/img/card-game.svg"
alt="RE4AI Ethical Guide logo"
/>
</picture>
</div>
</section>
</header>
<!-- Section About -->
<main class="container main">
<h2">Principles</h2>
</main>
<!-- Seção Footer -->
<footer class="footer">
<p><a href="http://creativecommons.org/licenses/by/4.0/" rel="license"><img style="border-width: 0;" src="https://i.creativecommons.org/l/by/4.0/80x15.png" alt="Creative Commons License" /><br />
</a><br />
Unless otherwise stated, the contents are licensed under
<a href="http://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 – International</a>.
The authors are responsible for the choice and presentation of their texts on this site and for the opinions expressed. <a class="link" href="https://github.com/josesiqueira/RE4AIEthicalGuide/">Source</a>.</p>
</footer>
</body>
</html>