start work on new-index

This commit is contained in:
Brian Picciano 2022-03-14 19:59:34 -06:00
parent 639eef8ebe
commit beececfa8d
3 changed files with 108 additions and 14 deletions

14
css/main.css Normal file
View File

@ -0,0 +1,14 @@
html {
font-family: Helvetica, sans-serif;
}
@font-face {
font-family: "Overpass";
src: url("overpass-regular.woff") format('woff');
}
h1, h2, h3, h4, h5, h6, .button-primary, .button {
font-family: "Overpass", Helvetica;
}

View File

@ -5,7 +5,6 @@
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>Brian Picciano - Senior Systems and Backend Programmer - Resume</title>
<meta name="description" content="Senior Systems and Backend Programmer">
<meta name="author" content="Brian Picciano">
<!-- No favicon -->
@ -17,21 +16,9 @@
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<style>
html {
font-family: Helvetica, sans-serif;
}
@font-face {
font-family: "Overpass";
src: url("overpass-regular.woff") format('woff');
}
h1, h2, h3, h4, h5, h6, .button-primary, .button {
font-family: "Overpass", Helvetica;
}
.section-tail {
padding-bottom: 3%;
margin-bottom: 2%;

93
new-index.html Normal file
View File

@ -0,0 +1,93 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>Brian Picciano - Freelance Developer</title>
<meta name="author" content="Brian Picciano">
<!-- No favicon -->
<link rel="shortcut icon" href="#" />
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<style>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="four columns">
<h1>Hello!</h1>
</div>
<div class="eight columns">
<p>
My name is Brian Picciano. I'm a full-stack developer with a
focus on designing scalable backend architectures for web
applications.
</p>
<p>
I have been in the web development industry for over ten
years, and during that time have been involved in every
aspect of building a web app. If you're having a problem,
there's a good chance I've solved it before.
</p>
</div>
</div>
<div class="row">
<div class="four columns">
<h1>What I Do</h1>
</div>
<div class="eight columns">
<p>
I help you solve your problems, no matter what stage of
development you're at. Offerings include:
</p>
<ul>
<li>
Development of a technology roadmap, so your app can scale
globally starting from <em>now</em>.
</li>
<li>
Analysis of your current architecture to find the
weaknesses and bottlenecks which are going to afflict your
team down the line, and develop strategies for mitigating
them.
</li>
<li>
Getting down into the weeds to track down those
impossible-to-find bugs, so you don't have to waste
valuable development time chasing them yourself.
</li>
<li>
Actual hands-to-keyboard coding! If you just need one more
person to grind out that crucial feature before deadline,
I can be there.
</li>
</ul>
</div>
</div>
<div class="row">
<form action="mailto:bgpicciano@gmail.com" >
<button class="button-primary">Email to get started!</button>
</form>
</div>
</div>
</body>
</html>