-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
124 lines (107 loc) · 4.75 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K44SMSMGJJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-K44SMSMGJJ');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="bootstrap-4.0.0/favicon.ico">
<title>RISC-V Assembly Programming: Contact</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap-4.0.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="jumbotron.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./book.html">Book</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./exercise-book.html">Exercises</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./simulator.html">Simulator</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="./other-resources.html">Other Resources</a>
</li>
-->
<!-- REMOVE
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="http://example.com" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Dropdown</a>
<div class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
-->
</ul>
<!-- REMOVE
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
-->
</div>
</nav>
<main role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-12">
<h2>Contacting the Authors</h2>
<p>
To contact the authors regarding the Book, Exercise Book or the RISC-V ALE, please send an e-mail to <a href="mailto:[email protected]">[email protected]</a>.
</p>
<p>
Problems regarding the Exercise Book can also be reported via Issues at the GitHub repository at <a href="https://github.com/discovery-unicamp/ale-exercise-book/issues" target="_blank">https://github.com/discovery-unicamp/ale-exercise-book/issues</a>.
</p>
</div>
<div class="col-md-12">
<h2>Reporting ALE Bugs</h2>
<p>
To report ALE Bugs, please open an issue on the GitHub repository at <a href="https://github.com/antoniocgj/RISC-V-ALE/issues" target="_blank">https://github.com/antoniocgj/RISC-V-ALE/issues</a>.
</p>
</div>
</div>
<hr>
</div> <!-- /container -->
</main>
<!--
<footer class="container">
<p>© 2021</p>
</footer>
-->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="bootstrap-4.0.0/assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
<script src="bootstrap-4.0.0/assets/js/vendor/popper.min.js"></script>
<script src="bootstrap-4.0.0/dist/js/bootstrap.min.js"></script>
</body>
</html>