WIP Session 1
This commit is contained in:
112
html/index.html
Normal file
112
html/index.html
Normal file
@@ -0,0 +1,112 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>DataDash</title>
|
||||
<link rel="stylesheet" href="main.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<header>
|
||||
<h1>Welcome to DataDash</h1>
|
||||
<p>The place to launch and discover datasets and API endpoints.</p>
|
||||
</header>
|
||||
|
||||
<section id="recents">
|
||||
<h2>Recently added:</h2>
|
||||
<ul class="datasets">
|
||||
<li>
|
||||
<div class="product-info">
|
||||
<div class="icon standup"></div>
|
||||
<div class="details">
|
||||
<h3>Standup</h3>
|
||||
<p>Simply daily accountability phone call, powered by AI</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
<li class="product">
|
||||
<div class="product-info">
|
||||
<div class="icon tori"></div>
|
||||
<div class="details">
|
||||
<h3>Tori</h3>
|
||||
<p>The simple mobile crypto wallet even your mom can use</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
<li class="product">
|
||||
<div class="product-info">
|
||||
<div class="icon tyms"></div>
|
||||
<div class="details">
|
||||
<h3>Tyms</h3>
|
||||
<p>Modern accounting ERP for ambitious businesses</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
<li class="product">
|
||||
<div class="product-info">
|
||||
<div class="icon zapcardz"></div>
|
||||
<div class="details">
|
||||
<h3>ZapCardz</h3>
|
||||
<p>Remember what you learn forever with AI powered flashcards</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
<li class="product">
|
||||
<div class="product-info">
|
||||
<div class="icon peek"></div>
|
||||
<div class="details">
|
||||
<h3>Peek</h3>
|
||||
<p>AI organizer and workspace for your browser tabs</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="Top">
|
||||
<h2>Most Liked:</h2>
|
||||
<ul class="datasets">
|
||||
<li class="product">
|
||||
<div class="product-info">
|
||||
<div class="icon standup"></div>
|
||||
<div class="details">
|
||||
<h3>Standup</h3>
|
||||
<p>Simply daily accountability phone call, powered by AI</p>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="upvote">
|
||||
<button>⬆</button>
|
||||
<span class="upvote-count">8</span>
|
||||
<button>⬇</button>
|
||||
</aside>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user