Skip to content

Update index.html #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules

# Local Netlify folder
.netlify
8 changes: 8 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: npm install


8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[![Netlify Status](https://api.netlify.com/api/v1/badges/b3087df7-a043-438e-b95c-e147ce11d23f/deploy-status?branch=patch-1)](https://app.netlify.com/sites/venerable-bienenstitch-3eb5f5/deploys)


## Deploying a Static Site with Netlify

View my netlify website [here](https://netlify-app-1234.netlify.app/).

Hello! This GitHub repo is intended to be used with the article [Deploying a Static Site with Netlify](https://www.codecademy.com/articles/deploying-a-static-site-with-netlify).

Make sure to follow the steps as outlined in the article to see how to use Netlify for your deployment needs!

You're free to make changes on your own branch, but for the sake of consistency, we will not be merging any external pull requests. Thank you and happy coding!
I am free to make changes on my own branch, but for the sake of consistency, we will not be merging any external pull requests. Thank you and happy coding!
37 changes: 31 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,39 @@
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
<title>Your Website</title>
<title>Sara's Website</title>
</head>

<body>
<div class="container">
<h1>Welcome to your website!</h1>
<button id="clap-button" class="button">👏</button>
</div>
<main>
<div class="container">
<h1>Welcome to Sara's website!</h1>
<button id="clap-button" class="button">👏</button>
</div>

<section>
<div>
<h2>Pretty Colours!</h2>
<h3>For all the colours of the Rainbow.</h3>
</div>
</section>
<section>
<div>
<h4>
So press the button to your hearts content to see all the different colours generated.
</h4>
</div>
</section>
<section>
<div>
<h5>
This is my first netlify website.
</h5>
</div>
</section>
</main>


</body>

</html>
</html>
Loading