mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-12 02:06:14 -05:00
59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GitHub Buttons</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: 'Nunito', sans-serif;
|
|
}
|
|
.iframe-container {
|
|
border: 2px solid #f0c040;
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
width: 90%;
|
|
max-width: 350px;
|
|
margin: 5px auto;
|
|
background-color: #f9f9f9;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
.github-button {
|
|
margin-top: 5px;
|
|
}
|
|
h3 {
|
|
font-size: 14px;
|
|
margin: 2px 0 8px 0; /* Add bottom margin to create space */
|
|
}
|
|
p {
|
|
font-size: 12px;
|
|
margin: -6px 0;
|
|
}
|
|
.highlight {
|
|
font-weight: bold;
|
|
color: #e74c3c;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="iframe-container">
|
|
<h3>🌟 Help Us Reach 1,000 Stars! 🌟</h3>
|
|
<p>For every 25 stars, <span class="highlight">Arduino and SEEED will each donate a <a href="https://store.arduino.cc/products/nicla-vision" target="_blank">NiclaVision</a> or <a href="https://www.seeedstudio.com/XIAO-ESP32S3-Sense-p-5639.html" target="_blank">XIAO ESP32S3</a></span> kit for AI education in the developing world. <em> </em></p>
|
|
<!-- Star Button -->
|
|
<a class="github-button"
|
|
href="https://github.com/harvard-edge/cs249r_book"
|
|
data-icon="octicon-star"
|
|
data-show-count="true"
|
|
data-size="large"
|
|
aria-label="Star harvard-edge/cs249r_book on GitHub">
|
|
Star
|
|
</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|