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

do it #15

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bd63057
Update index.html
maverickad77 Dec 23, 2023
731a159
Update style.css
maverickad77 Dec 23, 2023
a3ab113
Update index.html
maverickad77 Dec 23, 2023
dbd1cc4
Update style.css
maverickad77 Dec 23, 2023
125f59c
Update index.html
maverickad77 Dec 23, 2023
edac3d7
Update index.html
maverickad77 Dec 23, 2023
abc9e40
Update style.css
maverickad77 Dec 23, 2023
4427b25
Update README.md
maverickad77 Dec 23, 2023
03a87d0
Update index.html
maverickad77 Dec 26, 2023
c943d59
Update style.css
maverickad77 Dec 26, 2023
f6c74ca
Create CNAME
maverickad77 Dec 26, 2023
c6f02dc
Delete CNAME
maverickad77 Dec 26, 2023
40a548f
Update index.html
maverickad77 Dec 26, 2023
0969f95
Update style.css
maverickad77 Dec 26, 2023
e1122fd
Update index.html
maverickad77 Dec 26, 2023
21ddee0
Update style.css
maverickad77 Dec 26, 2023
9e27151
Update style.css
maverickad77 Dec 26, 2023
1dd370a
Update index.html
maverickad77 Dec 26, 2023
d43debd
Update style.css
maverickad77 Dec 26, 2023
c48b0f4
Update style.css
maverickad77 Dec 26, 2023
ef5e1b0
Update index.html
maverickad77 Dec 26, 2023
7bd8921
Update index.html
maverickad77 Dec 26, 2023
62c25c2
Update style.css
maverickad77 Dec 26, 2023
8c641f4
Create CNAME
maverickad77 Dec 26, 2023
c9042c2
Delete CNAME
maverickad77 Dec 26, 2023
fc3c7e1
Update index.html
maverickad77 Dec 26, 2023
d756301
Update style.css
maverickad77 Dec 26, 2023
401210e
Update index.html
maverickad77 Dec 26, 2023
a05c1d3
Update style.css
maverickad77 Dec 26, 2023
1a84cef
Update style.css
maverickad77 Dec 26, 2023
a72ea2a
Update style.css
maverickad77 Dec 26, 2023
ab00ffa
Update index.html
maverickad77 Dec 26, 2023
c5f0251
Update style.css
maverickad77 Dec 26, 2023
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# starter-pete-thinkful-portfolio
I made updates to the Index.html and the Style.css as requested within the assignment.
36 changes: 18 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,32 @@
</head>
<body>
<!-- Header section -->
<header>
<header class="title">

<h1>Pete Thinkful | Artist</h1>
<nav>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>

</header>

</body>
<main>
<div>
<!-- About section -->
<article id="about">
<h2>About</h2>
<section>
<h3>Hi! I'm Pete Thinkful</h3>
<section class="container">
<div>
<img
class="image-circle"
src="images/pete-thinkful.png"
alt="Pete Thinkful"
/>
</div>
<div class="items">
<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 +50,7 @@ <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>
</section>

<section>
Expand All @@ -69,37 +73,33 @@ <h3>Pete's Background</h3>
<!-- Portfolio section -->
<article id="portfolio">
<h2>Portfolio</h2>
<section>
<section class="container">
<div class="items" style="margin: 14px; ">
<h3>Abstract Red</h3>
<div>
<img src="images/abstract-red.png" alt="Abstract Red" />
</div>
<p>
<p style="font-size: 14px;">
Vaporware wayfarers heirloom neutra disrupt. Activated charcoal
waistcoat scenester hell of.
</p>
</section>

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

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

Expand Down
24 changes: 22 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,27 @@ h3 {
}

/* Header */
header {
header{
text-align: center
}
.container{
display:flex;
text-align: center;
flex-direction: row;
justify-content: space-between;

}

.title{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.items{
display: flex;
flex-direction: column;
text-align:left;
}

/* Containers */
Expand All @@ -38,7 +57,7 @@ article div {
}

/* Paragraphs */
p {
p {
line-height: 1.5;
}

Expand All @@ -65,6 +84,7 @@ img {
.image-circle {
border: 2px solid #003049;
border-radius: 50%;

}

/* Footer */
Expand Down