forked from mdengusiak/mdengusiak.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest1.html
More file actions
50 lines (49 loc) · 1.86 KB
/
test1.html
File metadata and controls
50 lines (49 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title> Michal Tab </title> <!-- Thia is to define brower Tab -->
</head>
<body>
<h1> Hello World! </h1>
<p> ...this is beginning of my new journey... by Michal Dengusiak </p>
<h1> Hello everyone </h1> <!-- This is to create header -->
<p> This is my first html script. Let me intrduce myself and my family </br>
I just finished first section of HTML course at
<a href = "https://www.sololearn.com/Course/HTML/" target="_blank">
SoloLearn
</a>
I am pelased that learnt quite a lot so far.
</p> <!-- create paragraphs -->
<!--img src = "https://assets-cdn.github.com/images/icons/emoji/unicode/1f46a.png" alt="" /--> <!-- add image -->
<img src = "https://assets-cdn.github.com/images/icons/emoji/unicode/1f46a.png" height="128px" width="128px" />
<h4> This is my family </h4>
<ol> <!-- create order list -->
<li> Here I am </li> <!-- create list items -->
<li> My amazing wife </li>
<li> Lovely Daughter </li>
</ol>
<p> I love opensource innitatives and therefore I am working with <strong>LadybugTools</strong>. <!-- create paragraphs -->
<a href = "https://www.ladybug.tools/index.html" target="_blank">
Link
</a>
</p>
<p> Currently together with my amazing <!-- create paragraphs -->
<a href = "https://www.ladybug.tools/about.html#team" target="_blank"> Team </a>
working on <strong>Spider</strong> project
</p>
<table border = "1"> <!-- create table -->
<tr> <!-- create table row -->
<td> gbXML Viewer Aragog </br>
<a href = "http://www.ladybug.tools/spider/gbxml-viewer/dev" target="_blank">
Link
</a>
</td> <!-- create table column -->
<td> RAD Viewer </br>
<a href = "https://www.ladybug.tools/spider-rad-viewer/rad-viewer/" target="_blank">
Link
</a>
</td>
</tr>
</table>
</body>
</html>