-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
182 lines (145 loc) · 5.11 KB
/
about.html
File metadata and controls
182 lines (145 loc) · 5.11 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alex Smith's Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://use.typekit.net/sge4hna.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./script.js"></script>
</head>
<body class="about">
<!-- Header -->
<div class="header">
<div id="myLinks">
<a href="/index.html" class="headerlinks">Home</a>
<a href="/media.html" class="headerlinks">Media</a>
<a href="/about.html" class="headerlinks">About</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<a href="/files/AlexSmith_Resume.pdf" target="_blank" download="/files/AlexSmith_Resume.pdf" class="resume">RESUME</a>
</div>
<br><br>
<!-- About Me Text Section -->
<div class="aboutsection">
<!-- Text -->
<div class="about-box">
<div class="about-header">
<br>
Hello!
<br>
</div>
<div class="about-text">
<br>
<redtext>My name is Alex Smith.</redtext>
<br>
I am a Game Designer who likes to focus
on programming and game mechanics.
I also have extensive experience in the other
aspects of game design such as modeling, rigging,
animation, texturing, and level design.
<br>
<br>
I am currently creating games using
Unreal Engine and learning how to use programs
alongside it such as maya and substance.
<br>
<br>
<redtext>EDUCATION:</redtext><br>
Bachelor of Applied Arts In Media Arts with a concentration
in game design
<br>
<br>
</div>
<!--Skills-->
<div class="skills-tab">
<div style="padding-right:5%; word-break: keep-all;" class="float-left">
<redtext>SKILLS:</redtext>
<br>
Unreal
<br>
Maya
<br>
Github
<br>
Substance Painter
<br>
Substance Designer
<br>
</div>
<br>
C# and C++<br>
Unity<br>
Photoshop<br>
Premiere Pro<br>
After Effects
</div>
</div>
<!-- Image -->
<div class="about-image">
<img class="profile-image" src="/images/ProfilePicture.webp" alt="Me">
</div>
</div>
<!-- Segment -->
<div class="segment"></div>
<br>
<!-- Contact -->
<div class="centertext text_shadows">
<div class="about-header">
LET'S TALK!
</div>
<div class="about-description">
CONTACT ME HERE FOR FUTURE WORK AND PARTNERSHIPS
</div>
<!-- Email Button -->
<form action="mailto:alex.smith7462@gmail.com">
<br>
<input class="email-button btn" type="submit" value=" alex.smith7462@gmail.com ">
</form>
<br>
<div class="about-header">
Or
</div>
<div class="about-description">
Send an email from here!
</div>
<br>
<br>
<!-- Send Email from Website -->
<form action="https://formsubmit.co/alex.smith7462@gmail.com" method="POST">
<input class="contact-name-email" type="text" name="Name" placeholder="Name" required>
<input class="contact-name-email" type="email" name="Email" placeholder="Email" required>
<br>
<br>
<br>
<br>
<input class="contact-subject" name="Subject" placeholder="Subject" required></textarea>
<br>
<br>
<br>
<textarea class="contact-message" name="Message" placeholder="Message" required></textarea>
<br>
<br>
<input class="email-button btn" type="submit" value=" Send ">
</form>
</div>
<br>
<br>
<!-- Footer -->
<footer>
<footer-text class="float-left">
© 2024 By Alex Smith
</footer-text>
<footer-text class="float-right">
<a href="/about.html" class="footerlinks">
Back to Top
</a>
</footer-text>
</footer>
<!-- End page content -->
</body>
</html>