Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions 03-codigotchi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- Font -->
<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=Roboto:wght@400;700&display=swap" rel="stylesheet" />

<!-- Add stylesheet -->
<link rel="stylesheet" href="style.css" />

<!-- Add JS -->
<script defer src="script.js"></script>

<title>Codigotchi</title>
</head>
<body>

<div>

<!-- Add header -->
<header>
<img src="images/logo.png" alt="Logo" />
</header>

<!-- Add main section -->
<main>

<!-- Add the codigotchi and its screen -->
<section>
<img src="images/codigotchi.png" />
</section>

<!-- Add control elements -->
<section>

<!-- Microphone controls -->
<div>
<button>
<img src="images/mic.png" />
</button>
<h2>Activate Microphone</h2>
</div>

<!-- Commands -->
<div>
<h2>Speak a command!</h2>
<h3>Supported Commands</h3>

<div>
<ul>
<li>Eat</li>
<li>Dance</li>
<li>Sleep</li>
</ul>
</div>
</div>

</section>

</main>

</div>

</body>
</html>