Skip to content

Commit

Permalink
hello
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelsoeiro committed Aug 12, 2015
1 parent 63be943 commit 1a20eef
Show file tree
Hide file tree
Showing 8 changed files with 107 additions and 0 deletions.
17 changes: 17 additions & 0 deletions PaginasWeb/Body elements/HTML Basics (6).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>

<head>
<title>
Headings & Paragraphs
</title>

</head>
<body>

<h1> content here (text here) </h1>
<p> more one paragraph </p>
<p> 2nd and the last one. (paragraph) </p>

</body>
</html>
22 changes: 22 additions & 0 deletions PaginasWeb/Body elements/HTML Basics (7).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>

<head>
<title>
Headings & Paragraphs
</title>

</head>
<body>

<h1> content here (text here) </h1>
<p> more one paragraph </p>
<p> 2nd and the last one. (paragraph) </p>

<h3> Director </h>

<h5> lowly assistant </h>
<p> 3rd paragraph </p>

</body>
</html>
29 changes: 29 additions & 0 deletions PaginasWeb/Body elements/HTML Basics (8).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>

<head>
<title>
Headings & Paragraphs
</title>

</head>
<body>

<h1> content here (text here) </h1>
<p> more one paragraph </p>
<p> 2nd and the last one. (paragraph) </p>

<h3> Director </h>

<h5> lowly assistant </h>
<p> 3rd paragraph </p>

<h2> TEST </h2>
<p> more 1 </p>
<h4> test2 </h4>
<p> more 1 </p>
<h6> Test3 </h6>
<p> more 1 </p>

</body>
</html>
5 changes: 5 additions & 0 deletions PaginasWeb/Intruduction to HTML/HTML Basics (1).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<!DOCTYPE html>
<html>
<strong>Feel free to change this text. (hello world)</strong>
</html>

7 changes: 7 additions & 0 deletions PaginasWeb/Intruduction to HTML/HTML Basics (2).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>

<html>

hello world

</html>
7 changes: 7 additions & 0 deletions PaginasWeb/Intruduction to HTML/HTML Basics (3).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>

<html>

hello hello, again.

</html>
8 changes: 8 additions & 0 deletions PaginasWeb/Intruduction to HTML/HTML Basics (4).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<title>
hello my friends (ex: My Webpage)
</title>
</head>
</html>
12 changes: 12 additions & 0 deletions PaginasWeb/Intruduction to HTML/HTML Basics (5).html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>
hello my friends (ex: My Webpage)
</title>
</head>
<body>
<p>Hello World! (true one xD) "1st paragraph"</p>
<p> Olá Mundo ! (portuguese version) "2nd paragraph"</p>
</body>
</html>

0 comments on commit 1a20eef

Please sign in to comment.