Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

my webpage #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html>

<head>

<style>
body {
background-color: white;
font-family: monospace;
border-style: solid;
margin-top: 25px;
margin-bottom: 40px;
margin-left: 25px;
margin-right: 25px;
}

h1 {
color: black;
font-family: monospace;
text-align: center;
}

h2 {
text-indent: 25px;
}

h3 {
text-indent: 10px;
}

div {
text-indent: 10px;
padding-bottom: 12px;
margin-left: 12px;
margin-right: 12px;
margin-bottom: 12px;
}

p {
text-indent: 10px;
padding-bottom: 12px;
margin-left: 12px;
margin-right: 12px;
margin-bottom: 12px;

}

.flex {
display: flex;
}

.col {
flex: 1;
border-style: dashed;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 5px;
margin-top: 5px;

}

.headerInFlex {
font-family: serif;
font-size: 14px;
}
</style>
</head>

<body>
<h1 style="font-size:60px;"> Matt Garrity </h1>
<h2>...Hi World, my name's Matt.</h2>

<div class="flex">
<div class="col">
<h3> Who am I??? </h3>
<p> I'm training at the awesome Constructor Labs in Shoreditch, London to hopefully become a full stack ninja!
</p>
</div>
<div class="col">
<h3> What am I up to??? </h3>
<p> I'm training at the awesome Constructor Labs in Shoreditch, London to hopefully become a full stack ninja!
</p>
</div>
<div class="col">
<h3> Where do I want to go??? </h3>
<p> I'm training at the awesome Constructor Labs in Shoreditch, London to hopefully become a full stack ninja!
</p>
</div>
</div>
</body>