-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
126 lines (122 loc) · 4.65 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tatanka - Project Data Viz</title>
<link
type="image/png"
sizes="32x32"
rel="icon"
href="./iimages/favicon.ico"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Load d3.js -->
<script src="https://d3js.org/d3.v6.js"></script>
<!-- <script src="https://d3js.org/d3.v4.js"></script> -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/jquery-3.6.1.js"
integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI="
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
<script src="https://unpkg.com/svg-pan-zoom-container"></script>
</head>
<body>
<div class="dashboard">
<aside class="search-wrap" id="includeNavbar"></aside>
<header class="menu-wrap" id="includeSidebar"></header>
<main class="content-wrap">
<header class="w3-container" id="geoTitle">
<h1><b>About Us</b></h1>
</header>
<br />
<div class="cards">
<div class="card">
<h2 class="card-title">Edoardo Pastorino</h2>
<img src="./iimages/EdoPasto.jpg" alt="" />
<p class="card-desc">
I'm a computer science's student, graduated with 110L as bachelor
degree at the university of Alessandria (UNIUPO). Now i'm near to
complete my studies at the master course at the university of
Genova (UNIGE), track: Data-centric Computing. Work hard and
"forget about it!"
<br />
<br />
<a href="https://www.linkedin.com/in/edoardo-pastorino-984759254/"
>- Linkedin</a
>
<br />
<a href="https://www.youtube.com/@edoardopastorino6822"
>- My YouTube Channel</a
>
</p>
</div>
<div class="card">
<h2 class="card-title">Mahyar Sadeghi Garjan</h2>
<img src="./iimages/MahyarSadeghi.jpeg" alt="" />
<p class="card-desc">
Mahyar Sadeghi received his B.Sc. from the University of Mohaghegh
Ardabili (UMA) in computer engineering. He is currently a M.Sc.
student in computer science -Data Engineering and Artificial
Intelligence in university of Genova, Italy. He is also a research
fellow in this university, working on “AI agent-based model
oriented to traffic control using CAVs” in which the aim is to
simulate traffic macro- level behavior with injecting Autonomous
Vehicles in micro-level. His research interests include
Reinforcement Learning, Machine Learning, Multi Agent Systems and
brain inspired Artificial Intelligence. <br />
<br />
<a href="https://www.linkedin.com/in/mahyar-sadeghi-94b001190"
>- Linkedin</a
>
<br />
<a href="https://sites.google.com/view/mahyarsadeghi-ga/home"
>- My Website</a
>
</p>
</div>
</div>
<footer id="includeFooter"></footer>
</main>
</div>
<script>
$(function () {
$("#includeSidebar").load("./components/sidebar.html");
});
$(function () {
$("#includeNavbar").load("./components/navbar.html");
});
$(function () {
$("#includeFooter").load("./components/footer.html");
});
</script>
</body>
</html>