-
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.
- Loading branch information
Showing
4 changed files
with
302 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -1 +1,67 @@ | ||
Hello world | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>ACorEx</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet"> | ||
<style> | ||
body, html { | ||
height: 100%; | ||
font-family: "Atkinson Hyperlegible", sans-serif; | ||
} | ||
|
||
.bgimg { | ||
background-position: center; | ||
background-size: cover; | ||
background-image: url("/acorex_examples.jpg"); | ||
min-height: 75%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<!-- Links (sit on top) --> | ||
<div class="w3-top"> | ||
<div class="w3-row w3-padding w3-black"> | ||
<div class="w3-col s6"> | ||
<a href="#" class="w3-button w3-block w3-black">HOME</a> | ||
</div> | ||
<div class="w3-col s6"> | ||
<a href="#download" class="w3-button w3-block w3-black">DOWNLOAD</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Header with image --> | ||
<header class="bgimg w3-display-container w3-grayscale-min" id="home"> | ||
<div class="w3-display-middle w3-center"> | ||
<span class="w3-text-sand" style="font-size:90px">Audio Corpus Explorer</span> | ||
</div> | ||
</header> | ||
|
||
<!-- Add a background color and large text to the whole page --> | ||
<div class="w3-sand w3-grayscale w3-large"> | ||
|
||
<!-- Download Container --> | ||
<div class="w3-container" id="download"> | ||
<div class="w3-content" style="max-width:700px"> | ||
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">DOWNLOAD</span></h5> | ||
<p><button class="w3-button w3-black" type="submit" onclick="window.open('acorex_v0.2_win.zip')">Windows</button></p> | ||
<p><button class="w3-button w3-black" type="submit" onclick="window.open('acorex_v0.2_mac.zip')">MacOS</button></p> | ||
<p><strong></strong></p> | ||
</div> | ||
</div> | ||
|
||
<!-- End page content --> | ||
</div> | ||
|
||
<!-- Footer --> | ||
<footer class="w3-center w3-light-grey w3-padding-48 w3-large"> | ||
</footer> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.