blob: d882d2216b85b28a09c049e45403a688448ebfc9 (
plain) (
blame)
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
|
<!doctype html>
<html lang="en"><head><meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<title>Name's Portfolio: Home</title></head><body>
<header>
<h1>Name's Portfolio
<i>All the info is here!</i></h1>
</header>
<nav>
<hr>
<a href="">Home</a> |
<a href="intro">Intro</a> |
<a href="i/wireframe.png">Wireframe</a> |
<a href="template">Template</a> |
<a href="http://github.com/4stc/portfolio">Source</a>
<i>Portfolio / Home</i>
<hr>
</nav>
<main>
<div class="col" id="left">
<img src="i/me.png" alt="a picture of me">
<p>Hey! My name is Name, I just graduated from high school
last spring and am now majoring in Computer Programming at
Southeast Tech. I live in Sioux Falls and have 4 siblings.
The lists on the right show a few of my interests, as well
as some of my technical skills.</p>
</div>
<div class="col" id="right">
<h2>I Enjoy</h2>
<ul>
<li>Traveling</li>
<li>Programming</li>
<li>Coffee & Tea</li>
<li>Bicycling</li>
<li>Electric Scootering</li>
<li>Learning</li>
<li>Hiking</li>
</ul>
<h2>Tech Skills</h2>
<ul>
<li>C#</li>
<li>HTML / CSS</li>
<li>SQL</li>
<li>Visual Studio</li>
<li>Oracle</li>
<li>Cloud Computing</li>
<li>Linux</li>
<li>Git</li>
<li>WordPress</li>
</ul>
</div>
</main>
<footer>
<p>Made by Name Surname</p>
</footer>
</body></html>
|