-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (59 loc) · 2.41 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Area</title>
<link id="theme-style" rel="stylesheet" href="style1.css">
<script src="toggle.js"></script>
</head>
<body>
<nav>
<div id="theme-toggle">
<button onclick="toggleTheme()">Toggle Theme</button>
</div>
<a href="index.html" class="nav-button">Home</a>
<a href="Technical.html" class="nav-button">Technical Portfolio</a>
<a href="Qualifications.html" class="nav-button">Qualifications</a>
<a href="Service.html" class="nav-button">Community Service</a>
<a href="contact.html" class="nav-button">Contact</a>
</nav>
<div class="main-container"></div>
<header>
<h1>LAYLA DONIA</h1>
<h2>Computer Science Major at Texas A&M University</h2>
<img src="profile_pic.png">
<img src="linkedin.png" class="linkedin">
<a href="https://www.linkedin.com/in/layla-donia" target="_blank">LinkedIn</a>
</header>
<main>
<div class="welcome-section">
<div class="text-box">
<div class="text">
<h2>Welcome!</h2>
<p>Hi! I'm a junior at <a href="https://www.tamu.edu/index.html" target="_blank">Texas A&M University</a> studying for a Bachelor's degree in Computer Science and a minor in Business. I love programming and exploring how business and technology work together. I'm excited to share my journey with you through this portfolio!</p>
</div>
</div>
</div>
<div class="content">
<div class="section">
<h3><a href="Technical.html">TECHNICAL PORTFOLIO</a></h3>
<img src="laptop.png">
</div>
<div class="section">
<h3><a href="Qualifications.html">QUALIFICATIONS</a></h3>
<img src="checklist.png">
</div>
<div class="section">
<h3><a href="Service.html">COMMUNITY SERVICE</a></h3>
<img src="service.png">
</div>
<div class="section">
<h3><a href="contact.html">CONTACT</a></h3>
<img src="contact.png">
</div>
</div>
</main>
<div>
</body>
</html>