-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="top-header">
<div class="topnav">
<nav class="navbar navbar-dark bg-dark">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="games.html">Games</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Robert Tammaro</h1>
<p></p>
<p>Dedicated and focused Software Engineer.</p>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<h3>Projects</h3>
<a href="projects.html">
<img src="https://img.icons8.com/ios/64/000000/laptop-coding.png"/>
</a>
<p>Projects include a gamified healthcare app and a website for a local technology meetup.</p>
</div>
<div class="box">
<h3>Games</h3>
<a href="games.html">
<img src="https://img.icons8.com/wired/64/000000/visual-game-boy.png"/>
</a>
<p>Games include a basic RPG and a 20-level 2D platformer.</p>
</div>
<div class="box">
<h3>About</h3>
<a href="about.html">
<img src="https://img.icons8.com/ios/64/000000/certificate.png"/>
</a>
<p>This page shows my degree, certificates, and skills.</p>
</div>
</div>
</section>
<footer>
<p> Robert Tammaro, Copyright ©2021</p>
<p><a href="https://icons8.com">Certificate, Visual Game Boy, and Laptop Coding icons by Icons8</a></p>
</footer>
</body>
</html>