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

finished website #10

Open
wants to merge 1 commit 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
99 changes: 51 additions & 48 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ <h1>Pete Thinkful | Artist</h1>
<!-- About section -->
<article id="about">
<h2>About</h2>
<section>
<h3>Hi! I'm Pete Thinkful</h3>
<section id="s1">
<img
class="image-circle"
src="images/pete-thinkful.png"
alt="Pete Thinkful"
/>
<div>
<img
class="image-circle"
src="images/pete-thinkful.png"
alt="Pete Thinkful"
/>
<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>
<li>Producing abstract art</li>
<li>Creating street graffiti art</li>
<li>Connecting with like-minded artists</li>
</ul>
<p>
Please feel free to take a look at my website and feel free to
<a href="#contact">contact me</a>.
</p>
</div>
<p>I'm an artist living in Denver, Colorado.</p>
<p>As an artist, I'm interested in:</p>
<ul>
<li>Producing abstract art</li>
<li>Creating street graffiti art</li>
<li>Connecting with like-minded artists</li>
</ul>
<p>
Please feel free to take a look at my website and feel free to
<a href="#contact">contact me</a>.
</p>
</section>

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

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

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

<hr />
Expand Down
26 changes: 25 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,29 @@ h3 {

/* Header */
header {
align-items: center;
justify-content: center;
display: flex;
text-align: center;
}

/* Containers */
#s1 {
justify-content: center;
align-items: center;
text-align: left;
display:flex;
flex-direction: row;
}

#portfolio div{
text-align: center;
}

#imageflex {
display:flex;
}

div {
background-color: #eae2b7;
margin: auto;
Expand All @@ -33,7 +52,6 @@ article {
}

article div {
text-align: center;
width: 100%;
}

Expand All @@ -56,6 +74,11 @@ nav a {
}

/* Images */
#imageflex img{
max-width: 150px;
}


img {
width: 100%;
max-width: 200px;
Expand All @@ -65,6 +88,7 @@ img {
.image-circle {
border: 2px solid #003049;
border-radius: 50%;
margin: 40px;
}

/* Footer */
Expand Down