-
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.
Add Reveal.js presentation slides for final year project guidance
- Loading branch information
1 parent
ff49718
commit 000146e
Showing
1 changed file
with
83 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,83 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Final Year Project Guidance</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<!-- Include Reveal.js --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/reset.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/reveal.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/theme/white.css"> | ||
</head> | ||
<body> | ||
|
||
<div class="reveal"> | ||
<div class="slides"> | ||
|
||
<!-- Slide 1 --> | ||
<section> | ||
<h2>Welcome!</h2> | ||
<p>I'm <strong>Mark Crowe</strong></p> | ||
<p>Your tutor in Software Development and all things Computers!</p> | ||
</section> | ||
|
||
<!-- Slide 2 --> | ||
<section> | ||
<h2>Join GitHub.com</h2> | ||
<p>Why should you join?</p> | ||
<ul> | ||
<li>Collaborate with developers</li> | ||
<li>Showcase your projects</li> | ||
<li>Track your progress with version control</li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Slide 3 --> | ||
<section> | ||
<h2>Recommended Technologies</h2> | ||
<p>For web projects, consider using:</p> | ||
<ul> | ||
<li><strong>Python</strong> and <strong>Django</strong> for websites</li> | ||
<li><strong>C#</strong> and <strong>ASP.NET</strong> for enterprise-level applications</li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Slide 4 --> | ||
<section> | ||
<h2>Artificial Intelligence</h2> | ||
<p>Consider exploring AI with:</p> | ||
<ul> | ||
<li><strong>Python</strong> for machine learning and AI applications</li> | ||
<li><strong>Jupyter Notebooks</strong> for interactive development and data science</li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Slide 5 --> | ||
<section> | ||
<h2>Make Your Own Reveal.js Presentation</h2> | ||
<p>Want to create your own presentation?</p> | ||
<ul> | ||
<li>Visit <a href="https://revealjs.com" target="_blank" rel="noopener">Reveal.js Website</a></li> | ||
<li>Check out the <a href="https://revealjs.com/docs/" target="_blank" rel="noopener">Reveal.js Documentation</a></li> | ||
<li>Perfect for creating beautiful, interactive slides</li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Slide 6 --> | ||
<section> | ||
<h2>Thank You!</h2> | ||
<p>Thanks for coming, and good luck with your final year projects!</p> | ||
</section> | ||
|
||
</div> | ||
</div> | ||
|
||
<!-- Include Reveal.js script --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.4.0/reveal.js"></script> | ||
<script> | ||
Reveal.initialize(); | ||
</script> | ||
|
||
</body> | ||
</html> |