-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from fastmachinelearning/nvt_cfp_2
add dedicated registration page
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 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
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
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,61 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<title>Fast ML for Science @ ICCAD 2023</title> | ||
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="css/frame.css" media="screen" rel="stylesheet" type="text/css" /> | ||
<link href="css/controls.css" media="screen" rel="stylesheet" type="text/css" /> | ||
<link href="css/custom.css" media="screen" rel="stylesheet" type="text/css" /> | ||
<link rel="canonical" href="https://fastmachinelearning.org/iccad2023"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> | ||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'> | ||
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'> | ||
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
<script src="js/menu.js"></script> | ||
<style> | ||
.menu-program { | ||
color: rgb(255, 255, 255) !important; | ||
opacity: 1 !important; | ||
font-weight: 700 !important; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<!--------------------------------------------------------------------------------------------> | ||
<!--Menu and Banner--> | ||
<div class="menu-container"></div> | ||
<div class="site-blocks-cover overlay inner-page-cover" style="background-image: url('image/sanfrancisco.jpg');" | ||
data-stellar-background-ratio="0.5"> | ||
<div class="container"> | ||
<div class="row align-items-center justify-content-center"> | ||
<div class="col-md-10 text-center" data-aos="fade-up"> | ||
<h1>Workshop Program</h1> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!--------------------------------------------------------------------------------------------> | ||
<div class="content-container"> | ||
<div class="content"> | ||
<div class="content-table flex-column"> | ||
<div class="flex-row"> | ||
<div class="flex-item flex-column"> | ||
<h2 class="add-top-margin">Registration</h2> | ||
<hr> | ||
<p class="text">Please register for our workshop through the <a href="https://web.cvent.com/event/957a9897-bf1d-4dcd-8bf3-d170231a4416/summary">main conference (ICCAD)</a>.</p> | ||
</div> | ||
</div> | ||
<div class="flex-row"> | ||
<div class="flex-item flex-column"> | ||
<p>© Fast Machine Learning for Science @ ICCAD, 2023</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |