-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (173 loc) · 4.34 KB
/
index.html
File metadata and controls
177 lines (173 loc) · 4.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en-UK">
<html> <!--This is a comment -->
<head>
<title>Learning HTML, CSS and JS</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Learning HTML,CSS and JS</h1>
<h2 title="And trying not to fail">Making my first website from scratch</h2>
<hr>
<a href="https://abondarciukas.myportfolio.com" target="_blank">Link to my website</a>
<br>
<img src="https://www.gettyimages.ie/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg" alt="Picture of birds" width="200" height="">
<br>
<button>This is a button</button>
<hr>
<ul>
<li>I like <strong>coffee</strong></li>
<li>And <b><i>tea</i></b></li>
<li>And obviously... <ins>computers</ins>!</li>
</ul>
<hr>
<pre> Some janky
Pre-formated LIKE CRAZY
Pointless text yo!
</pre>
<hr>
<p>A short quote: <q>Like, really, it's <em>this</em> short</q></p>
<hr>
<p>My goal: <blockquote> To learn how to build beautiful, modern and responsive websites that adapt to desktops and mobile devices</blockquote></p>
</body>
<hr>
<p>I began my <abbr title="HTML,CSS & JS">HCJS</abbr> journey on the 1<sup>st</sup> of August, 2018</p>
<hr>
<p>The book I want to read next is <cite>'Reclaiming Conversation: The Power of Talk in a Digital Age'</cite> by Sherry Turkle </p>
<hr>
<bdo dir="rtl">This text will be written from right to left</bdo>
<hr>
<p id="p01">This paragraph has different styling from the rest</p>
<hr>
<p class="error">Error style paragraph</p>
<hr>
<a href="http://google.com">
<img src="https://www.google.co.uk/logos/doodles/2018/ibn-sinas-1038th-birthday-5768556863029248.2-l.png" alt="Google" style="width:400px;border:0;">
</a>
<hr>
<a href="#p01">Jump to paragraph with different styling</a>
<hr>
<img src="https://www.w3schools.com/htmL/workplace.jpg" alt="Workplace" usemap="workmap">
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="https://en.wikipedia.org/wiki/Computer" target="_blank">
<area shape="circle" coords="337,300,44" alt="Coffee" href="https://en.wikipedia.org/wiki/Coffee" target="_blank">
</map>
<hr>
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
<hr>
<table style="width:100%">
<tr>
<th>Name</th>
<th colspan="2">Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>55577854</td>
<td>55577855</td>
</tr>
</table>
<hr>
<table style="width:100%">
<tr>
<th>Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>55577854</td>
</tr>
<tr>
<td>55577855</td>
</tr>
</table>
<hr>
<table style="width:100%">
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
<hr>
<table id="t01">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>Art</td>
<td>Bon</td>
<td>24</td>
</tr>
</table>
<hr>
<ul style="list-style-type:disc">
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
<hr>
<!-- Ordered list type: 1,A,a,I,i -->
<ol type="1">
<li>oF</li>
<li>Processing</li>
</ol>
<hr>
<!-- Description lists -->
<dl>
<dt>Coffee</dt>
<dd>- my favourite beverage</dd>
<dt>Soy milk</dt>
<dd>- alternative to milk</dd>
</dl>
<hr>
<!-- Controlled list counting -->
<ol start="50">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<hr>
<!-- Horizontal list, learn this for menu maybe? -->
<ul class="menu">
<li class="menu"><a href="#home">Home</a></li>
<li class="menu"><a href="#news">News</a></li>
<li class="menu"><a href="#contact">Contact</a></li>
<li class="menu"><a href="#about">About</a></li>
</ul>
<address>
Created by Arturas B.<br>
2018
</address>
</html>