forked from codeschool-projects/HTMLPortfolioProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 857 Bytes
/
index.html
File metadata and controls
46 lines (46 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<link rel="stylesheet" href="main.css">
<title>HTML Portfolio</title>
</head>
<body>
<div class="header">
<h1>Trolo</h1>
<h2>maker of things</h2>
</div>
<div class="tagline">
<h3>Here is what I typically do</h3>
<p>
Some random text
</p>
</div>
<div class="skills">
<h3>skills
<p>
Typical set of skills
</p>
<ul>
<li>
HTML
</li>
<li>
javascript
</li>
<li>
css
</li>
</ul>
</h3>
</div>
<div class="contact">
<h3>drop me a chocolate</h3>
<p>
Contact me anyway you want
<a href="https://github.com/codeschool-projects/HTMLPortfolioProject">follow link</a>
</p>
</div>
</body>
</html>