Skip to content

Commit 84c2f51

Browse files
committed
set up Github pages with readme
1 parent 377e302 commit 84c2f51

File tree

6 files changed

+51
-9
lines changed

6 files changed

+51
-9
lines changed

.DS_Store

-6 KB
Binary file not shown.

README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1-
<div style="border: 15px solid; border-image: url('https://cdn.osxdaily.com/wp-content/uploads/2017/12/classic-mac-os-tile-wallpapers-7.png') 30 round; padding: 3% 10%;">
2-
31
# Challenges and Assignments<br>from a Python Bootcamp Student
42

3+
Click to see the code in action 👉 [LIVE DEMO](https://armincano.github.io/fullstack-python-web-dev/) 👀
4+
55
## Module 02: Front-end 101
66

7-
<img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white" width="70" alt="html badge">
7+
![HTML Badge](https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white)
8+
![CSS Badge](https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white)
9+
![Bootstrap Badge](https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white)
810

9-
### HTML elements
11+
### HTML
1012

11-
- [Adding HTML elements](/m2-front-end-101/s1-html-elements/index.html)
13+
- [Adding HTML elements](./m2-front-end-101/s1-html-elements/index.html)
1214
- [CV](./m2-front-end-101/s1-html-elements/cv.html)
1315
- [Biography webpage](./m2-front-end-101/s1-html-elements/leonardo-da-vinci.html)
14-
- [Book medical appointment](/m2-front-end-101/s1-html-elements/book-medical-appointment/form-reserva-hora-medica.html)
16+
- [Book medical appointment](./m2-front-end-101/s1-html-elements/book-medical-appointment/form-reserva-hora-medica.html)
17+
- [Content sectioning semantics](./m2-front-end-101/s2-html-semantics/index.html)
1518

16-
---
19+
### CSS Responsive Design & Mobile First
1720

18-
![Matrix quote](https://readme-typing-svg.demolab.com?font=VT323&pause=1000&color=36BA01&center=true&vCenter=true&random=false&width=435&lines=%22Never+send+a+human+to+do+a+machine's+job%22;%E2%80%93+Agent+Smith)
19-
<div>
21+
- [Cats gallery using flexbox and media queries](./m2-front-end-101/s4-responsive-and-mobile-first/responsive-mobile-first-img-gallery/index.html)

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: minima

_layouts/default.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: nil
3+
---
4+
5+
<!DOCTYPE html>
6+
<html lang="en">
7+
<head>
8+
<meta charset="UTF-8" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
10+
<title>{{ page.title }}</title>
11+
<link rel="stylesheet" href="{{ '/assets/main.css' | relative_url }}">
12+
</head>
13+
<body>
14+
<div
15+
style="
16+
border: 25px solid;
17+
border-image: url('https://cdn.osxdaily.com/wp-content/uploads/2017/12/classic-mac-os-tile-wallpapers-7.png')
18+
30 round;
19+
padding: 3% 10%;
20+
margin: 20px;
21+
"
22+
>
23+
<main>{{ content }}</main>
24+
</div>
25+
</body>
26+
</html>

assets/main.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
body{
2+
font-family: Helvetica, Arial, sans-serif;
3+
}
4+
5+
main{
6+
font-family: Helvetica, Arial, sans-serif;
7+
}

index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default
3+
markdown: kramdown
4+
---
5+
6+
{% include_relative README.md %}

0 commit comments

Comments
 (0)