This repository was archived by the owner on May 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjournal.html
57 lines (54 loc) · 1.7 KB
/
journal.html
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
<!DOCTYPE html>
<html>
<head>
<title>Chad's Journal</title>
</head>
<body>
<h1>Chad's Journal to HTML<i>*bow*</i></h1>
<h2>Steps on creating a html file</h2>
<p>Its very easy just follow the steps below:</p>
<ol>
<li>Create your work folder and place it to your desktop</li>
<li>Open <b>Visual Studio Code</b> and open your work folder</li>
<li>Make it as a repo by initializing it at Source Control</li>
<li>Create a new file under the name <b>journal.html</b></li>
<li>???</li>
<li>Profit</li>
</ol>
<table>
<tr>
<th>Element</th>
<th>Definition</th>
</tr>
<tr>
<td>!DOCTYPE html</td>
<td>Tells the browser that the file is a HTML</td>
</tr>
<tr>
<td>HTML</td>
<td>Initiates HTML</td>
</tr>
<tr>
<tr>
<td>Head</td>
<td>A collection of metadata for the document</td>
</tr>
<td>Title</td>
<td>Represents the title of the document</td>
</tr>
<tr>
<td>Link</td>
<td>Allows to link other documents</td>
</tr>
<tr>
<td>Body</td>
<td>Contains the documents data</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
<a href="https://w3schools.com/" target="_blank"><img src="assets/neckbeard.jpg" width="50%" height="50%"></a>
</body>
</html>