-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (143 loc) · 4.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demonté's Personal Portfolio Website</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#">Demonté's Portfo<span>lio.</span></a></div>
<ul class = "menu">
<li><a href="#home">Home</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#project">Projects</a></li>
</ul>
</div>
</nav>
<! - - home section - - >
<section class="home" id="home">
<div class="max-width">
<div class ="home-content">
<div class="text-1">Hello, my name is </div>
<div class="text-2">Demonté Thomas</div>
<div class="text-3">And I am a <span class ="typing"></span>
</div>
</div>
<p>Self-driven, Motivated, With A knack to always learn more about how to solve issues and become a better developer and/or programmer, for me as well as the company. Currently a student seeking a bachelor’s In Computer Information Systems (2+Years). Basic knowledge of coding with the experience of working with Python, MySQL, C++, Linux, JavaScript and Html (1+ years). Eager to put my prior knowledge and gain key skills to help grow as a company.
</p>
</section>
<! -- education section -->
<section class="education" id="education">
<div class="max-width">
<h2 class="title">My education:</h2>
<div class ="education-content">
<div class="column left">
<img src="images/Devry.jpg" alt=""></div>
<div class="column left">
<img src="images/Degree.JPG" alt="">
</div>
<div class="column right">
<div class="text"><p>
<ul>
<li>Bachelor of Science in Computer Information Systems</li>
<p>Concentration Web Game Programming </p>
<p>DeVry University - Online - Dean’s List Pursuing </p>
<li>Associates of Applied Science in Information Tech & Networking</li>
<p>Specialization Information Systems & Programming</p>
<p>DeVry University - Decatur, GA - 04/2021</p>
</ul>
</p>
</div>
</div>
</div>
</section>
<! -- skills section -->
<section class="skills" id="skills">
<div class="max-width">
<h2 class="title">My Skills:</h2>
<div class ="skills-content">
<div class="card">
<div class="box">
<i class="fas fa-code"></i>
<div class="text">C++</div>
<p></p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fab fa-python"></i>
<div class="text">Python</div>
<p></p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fab fa-js"> </i>
<div class="text">JavaScript</div>
<p></p>
</div>
</div>
</div>
</div>
</section>
<!--project section-->
<section class="project" id="project">
<div class="max-width">
<div class ="project-content">
<h2 class="title">My Projects:</h2>
<p><b><i>ATM APP</i></b></p>
<p>Created pointers while passing pointers to methods;</p>
Read And write Files
</p>
<a href="https://devryu.instructure.com/courses/66244/assignments/1981932/submissions/132939?download=10263213" title="">View project ATM Application</a>
<p><b><i>Creating a Database Based on Business Rules</i></b> </p>
<p>To create a database based on business rules, developing an ERD, creating and populating tables, and performing queries.</p>
<a href="https://devryu.instructure.com/courses/64872/assignments/1915342/submissions/132939?download=10224755" title="">See Project. Creating a database based on rules</a>
</div>
</div>
</section>
<!--contact section-->
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title">Contact Me</h2>
<div class="text"> Keep in Touch!</div>
<p>404-xxx-xxxx</p>
<div class="icons"></div>
<div class="row"></div>
<i class="fas fa-user"></i>
<div class ="info"></div>
<div class="head">Name</div>
<div class="sub-title">Demonte Thomas</div>
<div class="row"></div>
<i class="fas fa-map-marker-alt"></i>
<div class ="info"></div>
<div class="head">Address</div>
<div class="sub-title">3814 Mulkey Circle Marietta Ga </div>
<div class="row"></div>
<i class="fas fa-user"></i>
<div class ="info"></div>
<div class="head">Email</div>
<div class="sub-title">MonteThmas@gmail.com</div>
</div>
</div>
</section>
<! - -footer section- ->
<footer>
<span>
Created By <a href="#">Demonte Thomas</a> | <span class="far fa-copyright"></span>2021 All Rights reserved.
</span>
</span>
</footer>
<script src="script.js"></script>
</body>
</html>