-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: initial commit for the space exploration site
- Loading branch information
0 parents
commit 8988845
Showing
11 changed files
with
895 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.