Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
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
51 changes: 51 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,54 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/

body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
}

.wrapper {

}

p {
width: 740px;
font-size: 20px;

}

h1 {
text-align: center;
font-size: 50px;
}

.readmore {
color: red;
font-size: 20px;
}

.header {
background-color: grey;
width: 100%;
}

.footer-wrapper {
background-color: grey;
width: 100%;
height: 200px;
display: flex;
justify-content: center;

}

.fa-facebook, .fa-twitter {
font-size: 30px;
}

div:first-child {
background-color: #808080;


}
Binary file added images/Raspberry-Pi-AirPrint-Thumbnail.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Raspberry-Pi-Android-TV-Thumbnail.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Raspberry-Pi-NodeJSl.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 53 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,69 @@
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<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>