-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
31 lines (30 loc) · 1.29 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Cool Website for Git Experts</title>
<!-- This next tag convinces phones that this is a mobile site that doesn't need to be zoomed in on -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<center>
<h1>Cool Website for Git Experts</h1>
</center>
<hr/>
<h2>My Favorite Links:</h2>
<ul>
<li>
<a href="https://git-scm.com/book/">The Git Book</a>
</li>
<!-- Add more links here! -->
<li>
<a href="https://coinmarketcap.com/">Top 100 Cryptocurrencies by Market Capitalization</a>
</li>
</ul>
</body>
<footer>
<p>To view or edit source visit the
<a href="https://github.com/bitcoin-santa-cruz/bitcoin-santa-cruz.github.io">Github repo</a>
</p>
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
</footer>
</html>