-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 3.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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="style.css">
<title>Helen Chong's Solo Projects for Scrimba's React Course</title>
</head>
<body>
<header>
<h1>Helen Chong's Solo Projects for Scrimba's React Course</h1>
</header>
<main>
<article>
<p>My solutions to the solo projects of Scrimba's React course.</p>
<p>Scrimba's React course links:</p>
<ul>
<li><a href="https://scrimba.com/learn/learnreact">Scrimba's scrims</a></li>
<li><a href="https://www.youtube.com/watch?v=bMknfKXIFA8">freeCodeCamp's YouTube channel</a></li>
</ul>
<p>All these projects are built with Vite + React, and deployed to GitHub Pages based on DEVLOKER's guide: <a href="https://dev.to/devloker/deploy-a-react-projects-that-are-inside-a-subdirectories-to-github-pages-using-github-actions-cicd-3n9l">Deploy a react projects that are inside a subdirectories to GitHub Pages using GitHub Actions (CI/CD)</a>.</p>
<h2>Digital Business Card</h2>
<img src="./1-digital-business-card/screenshot.png" alt="Screenshot of the digital businees card solo project">
<ul>
<li>
<a href="https://helenchong.dev/Scrimba-React-Solo-Projects/1-digital-business-card/">Live site</a>
</li>
<li>
<a href="https://github.com/helenclx/Scrimba-React-Solo-Projects/tree/main/1-digital-business-card" >Source code</a>
</li>
</ul>
<h2>Travel Journal</h2>
<img src="./2-travel-journal/screenshot.png" alt="Screenshot of the travel journal solo project">
<ul>
<li>
<a href="https://helenchong.dev/Scrimba-React-Solo-Projects/2-travel-journal/">Live site</a>
</li>
<li>
<a href="https://github.com/helenclx/Scrimba-React-Solo-Projects/tree/main/2-travel-journal">Source code</a>
</li>
</ul>
<h2>Quizzical</h2>
<img src="./3-quizzical/screenshot-start.png" alt="Screenshot of the start of Quizzical's quiz game">
<img src="./3-quizzical/screenshot-questions.png" alt="Screenshot of a list of quuestions from the Quizzical solo project">
<img src="./3-quizzical/screenshot-answers.png" alt="Screenshot of Quizzical displaying the quiz result">
<ul>
<li>
<a href="https://helenchong.dev/Scrimba-React-Solo-Projects/3-quizzical/">Live site</a>
</li>
<li>
<a href="https://github.com/helenclx/Scrimba-React-Solo-Projects/tree/main/3-quizzical">Source code</a>
</li>
</ul>
</article>
</main>
<footer>
<p>Coded by <a href="https://helenchong.dev/">Helen Chong</a>.</p>
</footer>
</body>
</html>