Skip to content

Commit 95c44c8

Browse files
Update README.md
1 parent 536b0c8 commit 95c44c8

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
1-
# w3-css-tutorial
2-
W3.CSS is a very simple and lightweight alternative to Bootstrap, for a responsive and mobile-first website
1+
# Intro To W3.CCS
2+
When I was starting to learn Bootstrap for my GitHub App,
3+
I came across this CSS Framework that will simplify
4+
my medium-sized project.
5+
6+
Having read only the introduction, I realized this
7+
is really great, just by adding it to your HTML,
8+
you can start using it.
9+
10+
## Basic Setup
11+
So let's have a basic Hello World
12+
13+
```
14+
<!DOCTYPE html>
15+
<html>
16+
<title>W3.CSS</title>
17+
<meta name="viewport" content="width=device-width, initial-scale=1">
18+
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
19+
<body>
20+
21+
<div class="w3-container w3-teal">
22+
<h1>Hello World</h1>
23+
</div>
24+
25+
</body>
26+
</html>
27+
```
28+
you can use JSFiddle to run the code to see the
29+
result right away <https://jsfiddle.net/>
30+
31+
or W3schools
32+
<https://www.w3schools.com/tryit/tryit.asp?filename=tryhtml_hello>
33+
34+
the result is just like this,
35+
![image](https://user-images.githubusercontent.com/47092464/146556237-053bd096-fc45-4970-b0b6-16c8ab706e8f.png)

0 commit comments

Comments
 (0)