-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (64 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<title> J. Logan Affleck | Software Engineering Student </title>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<header>
<!--Header Image. Has ID of "headimg" so it can be selected in CSS by itself without affecting any other pictures added.!-->
<img src="images/profile.jpg" alt="A picture of Logan" id="headimg">
<!--Header Title!-->
<h1> J. Logan Affleck </h1>
<h2 class="introTitle"> Software Engineering Student at <a href = "https://www.thinkful.com/" target="_blank">Thinkful</a></h2>
</header>
<main>
<!--
Intro Section:
* Who you are
* Where you are located
!-->
<article id="intro">
<h2>Intro</h2>
<p>I'm a student in the Software Engineering course at Thinkful. I live in Cape Cod, Massachusetts.</p>
<p>As a creative person, I have enjoyed working on graphic design for the last four years. Some skills include:</p>
<ul>
<li> Lettering and Font Design
<li> Vector Artwork
<li> Illustration
<li> 3D Modeling and Animation.
</ul>
</article>
<hr>
<!--
About Me
* passion for web development and your willingness to work with others
* One or two sentences that describe other interests you have outside of web development
!-->
<article id="about">
<h2>About Me</h2>
<p>As a graphic designer, I face technical challenges every day. While working with clients, I found myself wishing that I could create interactive and dymanic webpages, custom-coded 3D solutions, and manage databases. </p>
<p>I've joined Thinkful to, not only lay a foundation of coding knowledge — but to take that into the creative space. Working with fellow students will help me discover new ways of thinking about code, and I'm excited to see what they will share! </p>
<p>While I'm not working on school or design, I spend my time meal planning, playing games, and exploring the beaches in Cape Cod. </p>
</article>
<hr>
<!--
Contact
* LinkedIn
* GitHub
* Email
!-->
<article id="contact">
<h2>Contact</h2>
<address>
<ol>
<li><a href="https://www.linkedin.com/in/j-logan-affleck-89599719b/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/LoganAffleck" target="_blank">Github</a></li>
<li> <a href="mailto:affleck.logan@gmail.com" target="_blank">Email</a></li>
</ol>
</address>
</article>
</main>
</body>
</html>