-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (69 loc) · 2.75 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="resources/styles.css">
<link href="https://fonts.googleapis.com/css?family=Acme|Beth+Ellen|Hind+Madurai:400,700|Kalam:400,700|Kaushan+Script|Permanent+Marker|Roboto:400,700,900&display=swap" rel="stylesheet">
<!--What is a better practice to insert the font code in the HTML file or insert it in the CSS?-->
</head>
<body>
<heading>
<h1>Journal</h1>
<p>This first project is about my plans divided in 3 different horizons: Short, middle and long term.</p>
<p>Quick Note: Please let me know if my coding practices are appropiatte.</p>
</heading>
<div>
<h2>About me</h2>
<p>My name is Lucas, I'm originally from Chile and I've been living the last 4 years in Melbourne Australia.</p>
<h2>Background</h2>
<p>I studied business for 5 years back in my country, but I must confess I wasn't really passionate about it. Here in Australia I studied for two years project management.</p>
</div>
<div class="goal">
<div>
<h2>Goals</h2>
<table>
<tr>
<th>Name</th>
<th>Description</th>
<th>Timeframe</th>
<th>Classification</th>
</tr>
<tr>
<td>Painting</td>
<td>Set 3 painting in Brunswick Gallery</td>
<td>2 weeks</td>
<td>Short Term</td>
</tr>
<tr>
<td>Web Developer</td>
<td>Graduate from CodeAcademy</td>
<td>4-6 Months</td>
<td>Middle Term</td>
</tr>
<tr>
<td>Create a Portfolio</td>
<td>Create a portfolio and deploy it on GitHub Page</td>
<td>5-6 Months</td>
<td>Middle Term</td>
</tr>
<tr>
<td>Find a Job</td>
<td>Get a job as a front-end Developer</td>
<td>6 months</td>
<td>Middle Term</td>
</tr>
<tr>
<td>Develop an Android App</td>
<td>Develop MVP for Cafes and restaurants</td>
<td>12 Months</td>
<td>Long Term</td>
</tr>
</table>
</div>
</div>
</body>
<!--D:\Drive\Projects\assignment01\index.html-->
</html>