-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b655d8
commit 2546adb
Showing
1 changed file
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Event Schedule</title> | ||
<style> | ||
/* CSS styles for the header banner */ | ||
.header { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 20px; | ||
text-align: center; | ||
font-family: sans-serif; | ||
} | ||
|
||
body { | ||
font-family: sans-serif; | ||
font-size: 0.9em; | ||
} | ||
|
||
.table1 { | ||
border: 1px solid black; | ||
border-collapse: collapse; | ||
margin: 25px 0; | ||
font-size: 0.9em; | ||
font-family: sans-serif; | ||
min-width: 400px; | ||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); | ||
} | ||
|
||
.table1 th, .table1 td { | ||
padding: 12px 15px; | ||
border: 1px solid black; | ||
border-collapse: collapse; | ||
} | ||
|
||
.table1 head tr { | ||
background-color: #009879; | ||
color: #ffffff; | ||
text-align: left; | ||
} | ||
|
||
.table1 tbody tr { | ||
border-bottom: 1px solid #dddddd; | ||
} | ||
|
||
.table1 tbody tr:nth-of-type(even) { | ||
background-color: #f3f3f3; | ||
} | ||
|
||
.table1 tbody tr:last-of-type { | ||
border-bottom: 2px solid #009879; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<h1>Enterprise Neurosystem – AI for Sustainability Solutions Catalog</h1> | ||
</div> | ||
|
||
<p> | ||
This is a knowledgebase build by volunteers of Enterprise Neurosystem Open source community around the globe | ||
<br> | ||
Materials are posted in GitHub which gets published to this webesite | ||
<a href=" https://github.com/Enterprise-Neurosystem/Sustainability-Catalog"> Enterprise Neurosystem Group GitHub</a>. | ||
<br> | ||
<p> <br> | ||
If you would like to contribute to this catalog, please send a message to, | ||
please send a message to <a href="https://www.linkedin.com/in/dcverma/"> the organizer </a> or <a href="https://www.linkedin.com/in/sheebasprakash/"> linkedin page</a>. | ||
<p><br> | ||
AI for sustainability solutions | ||
<table class="table1" style="width:90%"> | ||
<tr> | ||
<th>Date</th> | ||
<th>Topic</th> | ||
<th>Author/Speaker</th> | ||
<th> Link/Recording Link </th> | ||
</tr> | ||
<tr> | ||
<td>Feb 6, 2023</td> | ||
<td>Overview for the Self-Describing Asset Catalog</td> | ||
<td>Anindita Das, Sharath Prasad, et. al. IBM, <br> Josh Purcell, Red Panda</td> | ||
<td> <a href="https://www.youtube.com/watch?v=vXksQxkhtAU"> recording </a> </td> | ||
</tr> | ||
<tr> | ||
<td>Feb 20, 2023</td> | ||
<td>Neural Information Retrieval</td> | ||
<td>Abhay Ratnaparkhi, IBM</td> | ||
<td> <a href="https://www.youtube.com/watch?v=e1KuuuLeFow"> recording </a> </td> | ||
</tr> | ||
<tr> | ||
<td>March 6, 2023</td> | ||
<td>Data Curation for AI</td> | ||
<td>Sheeba Prakash, IBM</td> | ||
<td> <a href="https://www.youtube.com/watch?v=UmK2m8A2798"> recording </a></td> | ||
</tr> | ||
|
||
</table> | ||
</body> | ||
</html> |