Skip to content

Commit

Permalink
feat: initial commit for the space exploration site
Browse files Browse the repository at this point in the history
  • Loading branch information
dhiashalabi committed May 20, 2024
0 parents commit 8988845
Show file tree
Hide file tree
Showing 11 changed files with 895 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
Binary file added Corleone.ttf
Binary file not shown.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Space Exploration Site

Quick start:

```
$ npm install
$ npm start
````
Head over to https://vitejs.dev/ to learn more about using vite
## About Scrimba
At Scrimba our goal is to create the best possible coding school at the cost of a gym membership! 💜
If we succeed with this, it will give anyone who wants to become a software developer a realistic shot at succeeding, regardless of where they live and the size of their wallets 🎉
The Frontend Developer Career Path aims to teach you everything you need to become a Junior Developer, or you could take a deep-dive with one of our advanced courses 🚀
- [Our courses](https://scrimba.com/allcourses)
- [The Frontend Career Path](https://scrimba.com/learn/frontend)
- [Become a Scrimba Pro member](https://scrimba.com/pricing)
Happy Coding!
Binary file added images/galaxy.webp
Binary file not shown.
Binary file added images/spacex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/universe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Space Exploration</title>
<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=Orbitron:wght@400;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="hero">
<img src="images/spacex.png" id="main-logo" />
<h1 id="title">Join the <span class="underline">exploration</span></h1>
<button class="btn">Apply</button>
</div>
<h3>Terms and conditions apply</h3>
</body>
</html>
Loading

0 comments on commit 8988845

Please sign in to comment.