-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (112 loc) · 5.44 KB
/
index.html
File metadata and controls
121 lines (112 loc) · 5.44 KB
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
<!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>Adam Winters</title>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet" />
</head>
<body>
<div class="banner">
<div class="title-name">
<h1>Adam</br>Winters</h1>
</div>
</div>
<div class="intro">
<img class="pfp" src="images/adam.jpg" alt="adam-pfp" />
<h2>Hello.</h2>
I'm a fresh university graduate eager to utilize the skills gained
through education, and even more determined to learn. I'm a
passionate, hardworking, and detailed individual.
</p>
<a class="href-btn" href="https://www.dropbox.com/s/1xdfmpj7k3jyknu/Adam_Winters_Resume.pdf?dl=0"
target="_blank">Resume</a>
<a class="href-btn" href="#skills">Skills</a>
<a class="href-btn" href="#projects">Projects</a>
<a class="href-btn" href="#contact">Contact</a>
</div>
<hr />
<div class="skills" id="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="communication-img" src="images/communication.png" alt="computer" />
<h3>Communication</h3>
<p>
My education has allowed me develop exceptional communtication
skills. Face-to-face communication is where I shine, as my energetic
personality and positive attitude welcome others.
</p>
</div>
<div class="skill-row">
<img class="detail-img" src="images/employee.png" alt="gym" />
<h3>Attention to Detail</h3>
<p>
Working in the restaurant industry for many years has provided me with
outstanding attention to detail. This carried over to writing countless
lines of clean code.
</p>
</div>
<div class="skill-row">
<img class="teamwork-img" src="images/teamwork.png" alt="gym" />
<h3>Teamwork</h3>
<p>
I've always been a team player. My education has put me in an abundence
of group scenerios where I've had to either lead or follow. Working as
a team has always been number one for me.
</p>
</div>
</div>
<hr/>
<div class="projects" id="projects">
<h2>My Projects.</h2>
<div class="proj-wrapper">
<div class="proj-item">
<h2>GoalSetter App</h2>
<img class="proj-img" src="images/goalsetter.png" />
<p>A goal setting app built with the MERN stack, utilizing JWT authentication and Redux</p>
<a href="https://winters-goalsetter.herokuapp.com/" target="_blank" class="button">Check it out</a>
<a href="https://github.com/Wintersboy/GoalSetter" target="_blank" class="button">Source code</a>
</div>
<div class="proj-item">
<h2>Secrets App</h2>
<img class="proj-img" src="images/secrets.png" />
<p>A Secrets webpage focusing on user authentication with passport.js.</p>
<a href="https://dry-citadel-41031.herokuapp.com/" target="_blank" class="button">Check it out</a>
<a href="https://github.com/Wintersboy/Secrets" target="_blank" class="button">Source code</a>
</div>
<div class="proj-item">
<h2>Todo List App</h2>
<img class="proj-img" src="images/todo.png" />
<p>A simple Todo app using MongoDB, Express, and Node.</p>
<a href="https://still-meadow-39049.herokuapp.com/" target="_blank" class="button">Check it out</a>
<a href="https://github.com/Wintersboy/Todo" target="_blank" class="button">Source code</a>
</div>
<div class="proj-item">
<h2>Tindog Webpage</h2>
<img class="proj-img" src="images/tindog.png" />
<p>A Tinder-like webpage using HTML, CSS, and Bootstrap for styling.</p>
<a href="https://wintersboy.github.io/TinDog/" target="_blank" class="button">Check it out</a>
<a href="https://github.com/Wintersboy/TinDog" target="_blank" class="button">Source code</a>
</div>
</div>
</div>
<hr />
<div class="contact" id="contact">
<h2>Get In Touch.</h2>
<p>If you have any questions, feel free to contact me.
Also, check out my LinkedIn and GitHub for more about me and my work.
</p>
<a class="contact-btn" href="mailto:adamwinters17@gmail.com">Contact Me</a>
<a class="footer-link" href="https://www.linkedin.com/in/adamwinters96/" target="_blank">LinkedIn</a>
<a class="footer-link" href="https://github.com/Wintersboy" target="_blank">GitHub</a>
</div>
<div class="copyright">
<p>© Adam Winters.</p>
</div>
</body>
</html>