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

Assessment_answers_index.html #11

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
28 changes: 21 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@
<body>
<!-- Header section -->
<header>
<div class="group">
<h1>Pete Thinkful | Artist</h1>
<div class="item">
<nav>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</div>
</div>
</header>

<main>
Expand All @@ -28,14 +32,16 @@ <h1>Pete Thinkful | Artist</h1>
<article id="about">
<h2>About</h2>
<section>
<h3>Hi! I'm Pete Thinkful</h3>
<div>
<div class="group">
<div class="item">
<img
class="image-circle"
src="images/pete-thinkful.png"
alt="Pete Thinkful"
/>
</div>
<div class="item">
<h3>Hi! I'm Pete Thinkful</h3>
<p>I'm an artist living in Denver, Colorado.</p>
<p>As an artist, I'm interested in:</p>
<ul>
Expand All @@ -47,6 +53,8 @@ <h3>Hi! I'm Pete Thinkful</h3>
Please feel free to take a look at my website and feel free to
<a href="#contact">contact me</a>.
</p>
</div>
</div>
</section>

<section>
Expand All @@ -69,38 +77,44 @@ <h3>Pete's Background</h3>
<!-- Portfolio section -->
<article id="portfolio">
<h2>Portfolio</h2>
<div class="other-group">
<div class="item">
<section>
<h3>Abstract Red</h3>
<div>
<img src="images/abstract-red.png" alt="Abstract Red" />
</div>
<p>
<p class="font-size">
Vaporware wayfarers heirloom neutra disrupt. Activated charcoal
waistcoat scenester hell of.
</p>
</section>

</div>
<div class="item">
<section>
<h3>Spiral Zany</h3>
<div>
<img src="images/spiral-zany.png" alt="Spiral Zany" />
</div>
<p>
<p class="font-size">
Sriracha portland taxidermy cronut messenger bag, vegan
distillery. Vaporware kickstarter air plant mumblecore food truck.
</p>
</section>

</div>
<div class="item">
<section>
<h3>Melted Rainbow</h3>
<div>
<img src="images/melted-rainbow.png" alt="Melted Rainbow" />
</div>
<p>
<p class="font-size">
Edison bulb single-origin coffee snackwave, actually ennui
locavore shabby chic forage.
</p>
</section>
</div>
</div>
</article>

<hr />
Expand Down
19 changes: 19 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@ h3 {
font-family: "Playfair Display", Times, serif;
text-align: center;
}
.group{
display: flex;
flex-direction: row;
align-items: center;

}
.other-group{
display: flex;
flex-direction: row;
}
.item{
flex:1;
align-items: center;
margin: 5px;
}

.font-size{
font-size: 14px;
}

/* Header */
header {
Expand Down