forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (60 loc) · 3.34 KB
/
index.html
File metadata and controls
74 lines (60 loc) · 3.34 KB
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
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Raspberry Pi Projects</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script src="https://kit.fontawesome.com/659e5b6a57.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header class="header">
<h1>Raspberry Pi Projects</h1>
<h2 style="text-align: center">Simple projects to automate your life</h2>
</header>
\
<article class="wrapper">
<div class="project">
<h2>Run Android TV on your Raspberry Pi</h2>
<h3>This project will show you how you can install Android TV onto the Raspberry Pi.</h3>
<img src="/images/Raspberry-Pi-Android-TV-Thumbnail.webp" alt="raspberry pi side view">
<p>Android TV is a special version of the popular mobile operating system. It features a redesigned interface that works better with the horizontal nature of TV screens. To get Android TV to run on a Raspberry Pi, we will be using a special build of LineageOS. This build is maintained and developed by the hard work of KonstaKANG and the Android-rpi team.</p>
<a class="readmore" href="https://pimylifeup.com/raspberry-pi-android-tv-lineageos">Read more</a>
</div><br>
<div class="project">
<h2>Installing NodeJS on the Raspberry Pi</h2>
<h3>How to install NodeJS on a Raspberry Pi</h3>
<img src="/images/Raspberry-Pi-NodeJSl.webp" alt="raspberry pi side view">
<p>In this guide, we will be showing you the straightforward steps to installing NodeJS on the Raspberry Pi. NodeJS is an open-source platform that allows you to run JavaScript outside of a web browser. It has quickly become popular amongst developers for command-line tools and server-side scripting to drive dynamic web pages.</p>
<a class="readmore" href="https://pimylifeup.com/raspberry-pi-nodejs/">Read more</a>
</div><br>
<div class="project">
<h2>Raspberry Pi Airprint Server</h2>
<h3>Build your own Raspberry Pi Airprint Server</h3>
<img src="/images/Raspberry-Pi-AirPrint-Thumbnail.webp" alt="raspberry pi side view">
<p>In this project, we will be showing you how to set up your Raspberry Pi as an AirPrint server. AirPrint is a printing protocol designed by Apple so that their devices would not need to download or install drivers.</p>
<a class="readmore" href="https://pimylifeup.com/raspberry-pi-airprint/">Read more</a>
</div><br>
</article>
<footer class="footer-wrapper">
<div class="about">
<h2>About</h2>
<p>We are a tech company specialising in home and business automation. We have a 10 year track record with completed automation projects for tech giants like Tesla, Google and Amazon.
</p>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</footer>
</body>
</html>