-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (98 loc) · 3.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pete Thinkful</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<!-- Builds header section and links nav options to different sections of page -->
<body>
<header>
<div id="logo">
<article>
<h1>Pete Thinkful | Artist</h1>
<div>
<nav>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</div>
</article>
</div>
</header>
<main>
<div>
<!-- TODO: Add About section here -->
<article id="about">
<section>
<div>
<h2>About</h2>
<h3>Hi! I'm Pete Thinkful</h3>
<!-- adds image and main body text to About section -->
<img class="image-circle" src="images/pete-thinkful.png" alt="Pete Thinkful">
</div>
</section>
<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>
<h3>Pete's Background</h3>
</div>
<p>After graduating college, I became an art teacher and worked with beginners and professionals. I love art and my works have been featured in major art galleries across the globe.</p>
<p>If you're looking to hire an artist or if you're an artist looking for a collaborator for your next project, please reach out! I'm so excited to work with other artists to create new art.</p>
</article>
<hr>
<!-- TODO: Add Portfolio section here -->
<article id="portfolio">
<div>
<h2>Portfolio</h2>
<h3>Abstract Red</h3>
<!-- adds images and main body text to Portfolio section -->
<img src="images/abstract-red.png" alt="Abstract Red">
</div>
<p>Vaporware wayfarers heirloom neutra disrupt. Activated charcoal
waistcoat scenester hell of.</p>
<div>
<h3>Spiral Zany</h3>
<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>
<div>
<h3>Melted Rainbow</h3>
<img src="images/melted-rainbow.png" alt="Melted Rainbow">
</div>
<p>Edison bulb single-origin coffee snackwave, actually ennui locavore shabby chic forage.</p>
</article>
<hr>
</div>
</main>
<!-- adds contact section to footer and establishes links to social media -->
<footer>
<article id="contact">
<div>
<h2>Contact</h2>
</div>
<p>I'd love to hear from you! Please feel free to contact or follow me:</p>
<ol>
<li><a href="https://www.linkedin.com/in/pete-thinkful/" target="_blank">LinkedIn</a></li>
<li><a href="https://instagram.com/pete.thinkful/" target="_blank">Instagram</a></li>
<li><a href="https://www.pinterest.com/pete.thinkful/" target="_blank">Pinterest</a></li>
</ol>
<br>
<br>
<div>
<p>© Pete Thinkful. All rights reserved.</p>
</div>
</article>
</footer>
</body>
</html>