-
Notifications
You must be signed in to change notification settings - Fork 132
/
github-button.html
58 lines (56 loc) · 1.97 KB
/
github-button.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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>