-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 2.28 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
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Steve Morin</title>
<meta name="description" content="Solving business problems with code. Taking photos.">
<meta property="og:title" content="Steve Morin's page">
<meta property="og:description" content="Solving business problems with code. Taking photos.">
<meta property="og:image" content="img/site-image.jpg">
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>
<a href="#home">Steve Morin</a>
</h1>
<nav>
<a href="#contact">Contact</a>
</nav>
</header>
<main role="main">
<section id="home">
I'm Steve. I design and build web-based applications for large corporations, small businesses, and individuals.
<br><br>
I spend a lot of time in front-end frameworks, like
<ul>
<li>React 💧,</li>
<li>and Angular 🔺.</li>
</ul>
<br>
When I need to build out any necessary back-end services, I prefer
<ul>
<li>Java ☕️,</li>
<li>Ruby on Rails 💎,</li>
<li>or NodeJS 🌳.</li>
</ul>
<br>
And I deploy all of this to the cloud using great tools, like
<ul>
<li>AWS 🐆,</li>
<li>Heroku 🍵,</li>
<li>and Netlify 🌎.</li>
</ul>
<br>
Please <a href="#contact">reach out</a> if I can help your team solve its next big challenge.
</section>
<section id="contact">
You can reach me via
<ul>
<li>
<a href="https://github.com/stevemorin">📓 GitHub</a>
</li>
<li>
<a href="https://linkedin.com/in/stephenmorin">💼 LinkedIn</a>
</li>
<li>
<a href="https://twitter.com/staavamos">🐦 Twitter</a>
</li>
<li>
<a href="mailto:[email protected]">📩 E-Mail</a>
</li>
</ul>
</section>
<footer>
<p>Copyright © 2021 Steve Morin</p>
</footer>
</main>
</body>
</html>