-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
67 lines (57 loc) · 2.64 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Navigation Bar -->
<nav>
<a href="index.html"><button>Home</button></a>
<a href="about.html"><button>About</button></a>
<a href="contact.html"><button>Contact</button></a>
</nav>
<!-- About Section -->
<div class="container about-section">
<h1>About Me</h1>
<div class="about-content">
<div class="about-image">
<img src="Aniya_stanford_3559.jpg" alt="Aniya Stanford">
</div>
<div class="about-summary" id="summary1">
<p>Hello! My name is Aniya Stanford, and I'm currently pursuing a Bachelor of Science in Information Technology
at Kennesaw State University, with an expected graduation date in May 2026. Located in Atlanta, Georgia, I
have a diverse range of experiences and skills in the IT field, driven by a passion for technology and
cybersecurity.</p>
<p>Throughout my academic and professional journey, I've had the opportunity to intern at several organizations,
where I’ve gained technical skills and practical experience.</p>
<p>I am well-versed in a variety of technical skills, including CSS, HTML, JavaScript, React, C#, SQL, Python,
and have foundational knowledge in cybersecurity. My core competencies include leadership, communication,
problem-solving, teamwork, flexibility, time management, responsibility, and being results-oriented.</p>
<p>In addition to my technical skills, I am actively involved in the National Society of Black Engineers (NSBE)
and Kennesaw State University's chapter of NSBE, as well as the KSU Women in Technology organization.</p>
<span class="big-arrow" onclick="showMoreInfo()">→</span>
</div>
<div class="about-summary hidden" id="summary2">
<p>My Resume:</p>
<a href=AniyaStanford_Resume.pdf download="AniyaStanford_Resume.pdf"><button>Download My Resume</button></a>
<span class="big-arrow" onclick="showLessInfo()">←</span>
</div>
</div>
</div>
<!-- Include JavaScript file -->
<script src="script.js"></script>
<script>
function showMoreInfo() {
document.getElementById('summary1').classList.add('hidden');
document.getElementById('summary2').classList.remove('hidden');
}
function showLessInfo() {
document.getElementById('summary2').classList.add('hidden');
document.getElementById('summary1').classList.remove('hidden');
}
</script>
</body>
</html>