Skip to content

Commit 3b79dc5

Browse files
committed
add materialize setup
1 parent 23f3b17 commit 3b79dc5

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# CSS Frameworks
22

3-
This repo is made of 2 projects:
3+
This repo is made of 3 projects:
44

55
1. [**Food Ninja**](#food): A recipe website to understand Tailwind CSS basics.
66
2. [**Ninja Coffee**](#coffee): A product page to understand Bulma basics.
7+
3. [**Photo Ninja**](#photo): A photography portfolio website to learn Materialize basics.
78

89
## <a name="food"></a>1) Food Ninja - Tailwind CSS
910

@@ -56,3 +57,23 @@ A product page to understand Bulma basics.
5657
- creating a form with text, checkbox and select fields.
5758

5859
Based on [Bulma CSS Tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9iXItWKbaQxcyDT1u6E7a8a) by Shaun Pelling - The Net Ninja (2020).
60+
61+
## <a name="photo"></a>3) Photo Ninja - Materialize
62+
63+
A photography portfolio website to learn Materialize basics.
64+
65+
<!-- [See Demo on CodePen](https://codepen.io/solygambas/full/KKWzKxw) -->
66+
67+
[See photo-ninja folder](https://github.com/solygambas/html-css-frameworks/tree/master/photo-ninja)
68+
69+
<!-- <p align="center">
70+
<a href="https://github.com/solygambas/html-css-frameworks/tree/master/photo-ninja">
71+
<img src="photo-ninja/screenshot.png">
72+
</a>
73+
</p> -->
74+
75+
### Features
76+
77+
-
78+
79+
Based on [Materialize Tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gGrbtvASEZSlFEYBnPkmff) by Shaun Pelling - The Net Ninja (2018).

photo-ninja/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Photo Ninja - Materialize
2+
3+
A photography portfolio website to learn Materialize basics.
4+
5+
<!-- [See Demo on CodePen](https://codepen.io/solygambas/full/KKWzKxw) -->
6+
7+
<p align="center">
8+
<!-- <img src="screenshot.png"> -->
9+
</p>
10+
11+
## Features
12+
13+
-
14+
15+
Based on [Materialize Tutorial](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gGrbtvASEZSlFEYBnPkmff) by Shaun Pelling - The Net Ninja (2018).

photo-ninja/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link
8+
href="https://fonts.googleapis.com/icon?family=Material+Icons"
9+
rel="stylesheet"
10+
/>
11+
<link
12+
rel="stylesheet"
13+
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
14+
/>
15+
16+
<title>Materialize</title>
17+
</head>
18+
<body>
19+
<div class="container">
20+
<h1>Materialize</h1>
21+
</div>
22+
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)