Skip to content

Commit 0a1cf4f

Browse files
authored
Update index.html
1 parent c17c567 commit 0a1cf4f

1 file changed

Lines changed: 65 additions & 59 deletions

File tree

index.html

Lines changed: 65 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,65 @@
1-
<header>
2-
3-
<!--
4-
<<< Author notes: Course header >>>
5-
Include a 1280×640 image, course title in sentence case, and a concise description in emphasis.
6-
In your repository settings: enable template repository, add your 1280×640 social image, auto delete head branches.
7-
Add your open source license, GitHub uses MIT license.
8-
-->
9-
10-
# GitHub Pages
11-
12-
_Create a site or blog from your GitHub repositories with GitHub Pages._
13-
14-
</header>
15-
16-
<!--
17-
<<< Author notes: Step 2 >>>
18-
Start this step by acknowledging the previous step.
19-
Define terms and link to docs.github.com.
20-
Historic note: previous version checked for empty pull request, changed to the correct theme `minima`.
21-
-->
22-
23-
## Step 2: Configure your site
24-
25-
_You turned on GitHub Pages! :tada:_
26-
27-
We'll work in a branch, `my-pages`, that I created for you to get this site looking great. :sparkle:
28-
29-
Jekyll uses a file titled `_config.yml` to store settings for your site, your theme, and reusable content like your site title and GitHub handle. You can check out the `_config.yml` file on the **Code** tab of your repository.
30-
31-
We need to use a blog-ready theme. For this activity, we will use a theme named "minima".
32-
33-
### :keyboard: Activity: Configure your site
34-
35-
1. Browse to the `_config.yml` file in the `my-pages` branch.
36-
1. In the upper right corner, open the file editor.
37-
1. Add a `theme:` set to **minima** so it shows in the `_config.yml` file as below:
38-
```yml
39-
theme: minima
40-
```
41-
1. (optional) You can modify the other configuration variables such as `title:`, `author:`, and `description:` to further customize your site.
42-
1. Commit your changes.
43-
1. (optional) Create a pull request to view all the changes you'll make throughout this course. Click the **Pull Requests** tab, click **New pull request**, set `base: main` and `compare:my-pages`.
44-
1. Wait about 20 seconds then refresh this page (the one you're following instructions from). [GitHub Actions](https://docs.github.com/en/actions) will automatically update to the next step.
45-
46-
<footer>
47-
48-
<!--
49-
<<< Author notes: Footer >>>
50-
Add a link to get support, GitHub status page, code of conduct, license link.
51-
-->
52-
53-
---
54-
55-
Get help: [Post in our discussion board](https://github.com/orgs/skills/discussions/categories/github-pages) &bull; [Review the GitHub status page](https://www.githubstatus.com/)
56-
57-
&copy; 2023 GitHub &bull; [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) &bull; [MIT License](https://gh.io/mit)
58-
59-
</footer>
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Project: Event invite</title>
6+
<style>
7+
body {
8+
text-align: center;
9+
font-family: calibri;
10+
background: pink;
11+
}
12+
13+
h1 {
14+
color: red;
15+
font-family: sans-serif;
16+
17+
}
18+
19+
p {
20+
background: yellow;
21+
22+
}
23+
24+
h2{
25+
font-family: helvetica;
26+
27+
}
28+
h3{
29+
color: green;
30+
font-family: arial;
31+
}
32+
</style>
33+
</head>
34+
<body>
35+
36+
<h1>You're invited!</h1>
37+
<h2>To Pretty's Birthday Party!</h2>
38+
<img id="red-heart" src="https://cdn.kastatic.org/third_party/javascript-khansrc/live-editor/build/images/cute/Heart.png" alt>
39+
40+
<p><strong>Take note of the details below:</strong></p>
41+
<ul>
42+
<li><strong>Date:</strong> Saturday May 31st 2025</li>
43+
<li><strong>Time:</strong> 12pm-till late</li>
44+
<li><strong>Location:</strong> 9 Sunbush close</li>
45+
</ul>
46+
47+
<p> Join me in celebrating the last birthday where i can still say i'm in my 30's without lying or crying . Turning 39 because 40 needs a warning shot</p>
48+
49+
<p>GUEST LIST</p>
50+
<ul>
51+
<li>Leeroy</li>
52+
<li>Zoe</li>
53+
<li>Zane</li>
54+
<li>Thelma</li>
55+
<li>Agie</li>
56+
<li>Nomsa</li>
57+
</ul>
58+
<h3>RSVP by May 20</h3>
59+
<a href="#">prettytaruvinga1@gmail.com</a>
60+
<br>
61+
<p><strong>Let me know if you're in or forever regret missing my pre-40 glow up party</strong></p>
62+
63+
64+
</body>
65+
</html>

0 commit comments

Comments
 (0)