You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.2 KiB
51 lines
2.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
|
|
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
|
|
crossorigin="anonymous" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<title>Rotating Navigation</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="circle-container">
|
|
<div class="circle">
|
|
<button id="close">
|
|
<i class="fas fa-times"></i>
|
|
</button>
|
|
<button id="open">
|
|
<i class="fas fa-bars"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1>GitHub</h1>
|
|
<small>Wikipedia</small>
|
|
<p>GitHub is a proprietary developer platform that allows developers to create, store, manage, and share their code. It uses Git to provide distributed version control and GitHub itself provides access control, bug tracking, software feature requests, task management, continuous integration, and wikis for every project. Headquartered in California, it has been a subsidiary of Microsoft since 2018.
|
|
</p>
|
|
|
|
<h3>GitHub Invertocat logo</h3>
|
|
<img
|
|
src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/800px-GitHub_Invertocat_Logo.svg.png"
|
|
alt="GitHub" height="100px", width="100px">
|
|
<p>It is commonly used to host open source software development projects. As of January 2023, GitHub reported having over 100 million developers and more than 420 million repositories, including at least 28 million public repositories. It is the world's largest source code host as of June 2023. Over five billion developer contributions were made to more than 500 million open source projects in 2024.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><i class="fas fa-home"></i><a href="#"> Home</a></li>
|
|
<li><i class="fas fa-user-alt"></i><a href="#"> About</a></li>
|
|
<li><i class="fas fa-envelope"></i><a href="#"> Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html> |