-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (80 loc) · 4.09 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
<!DOCTYPE html>
<html>
<head>
<title>Tina Collier's Portfolio Website</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Joan&family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<body>
<div class="bg-container">
<nav>
<a class="active" href="#home">HOME</a>
<a href="./aboutme.html" target="_blank">ABOUT</a>
<a href="./Tina Collier Resume 2022.pdf" target="_blank">RESUME</a>
<a href="https://github.com/TinaCollier" target="_blank">WORKS</a>
<a href="https://tina.collier.blog/" target="_blank">BLOG</a>
<a href="mailto:tina.greda@yahoo.com" target="_blank">CONTACT</a>
<input type="text" placeholder="Search.." >
</nav>
<div class="row">
<div class="column1">
<header>
<h1 id="myAnimation">Tina Collier</h1>
<h2>Currently in the process of becoming a full stack stack developer.</h2>
<h4>Participating in the MITxPro Coding Bootcamp and the Codecademy Full Stack Path</h4>
</header>
<div class="icons">
<figure>
<a href="www.linkedin.com/in/tina-collier" target="_blank">
<img class="linkedInIcon" src="./design/linkedinicon.webp" alt="linkedIn icon">
</a>
</figure>
<figure>
<a href="https://github.com/TinaCollier" target="_blank">
<img class="gitHubIcon" src="./design/githubicon.png" alt="GitHub icon">
</a>
</figure>
<figure>
<a href="mailto:tina.greda@yahoo.com" target="_blank">
<img class="emailIcon" src="./design/emailicon.png" alt="email icon">
</a>
</figure>
</div>
</div>
<div class="column2">
<div class="projects">
<h3>Projects</h3>
<figure id="project1" class="project">
<a href="https://github.com/TinaCollier/Boston_Adventure" target="_blank">
<img src="./design/bostonAdventurePic.jpeg" alt="image of ASCII train" >
<figcaption>Python Boston Adventure Project</figcaption>
</a>
</figure>
<figure id="project2" class="project">
<a href="https://github.com/TinaCollier/moveBall" target="_blank">
<img src="./design/moveBallPic.jpeg" alt="image of move ball javascript project" >
<figcaption>Javascript Move Ball Project</figcaption>
</a>
</figure>
<figure id="project3" class="project">
<a href="https://github.com/TinaCollier/my_book_library" target="_blank">
<img src="./design/bookLibraryDatabasePic.jpeg" alt="image of personal book library postgreSQL database project" >
<figcaption>HTML Cheatsheet</figcaption>
</a>
</figure>
</div>
</div>
</div>
</div>
<footer>
<ul>
<li>Tina Collier</li>
<li>Email: tina.greda@yahoo.com</li>
<li>Phone: (954)895-1177</li>
<li>Blog: tina.collier.blog</span></li>
</ul>
</footer>
</body>
<script src="./portfolio.js"></script>
</html>