-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (98 loc) · 4.22 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
<!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">
<meta name="description" content="UCRX Bootcamp Professional Portfolio">
<link rel="stylesheet" href="Assets/style.css">
<title>UCRX Bootcamp Professional Portfolio</title>
<!-- Other meta tags and links -->
</head>
<body>
<!-- Site Header -->
<header>
<h1>UCRX Bootcamp Professional Portfolio</h1>
<h2>Fred Motta</h2>
</header>
<!-- Navigation -->
<nav id="nav">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact Info</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#projects">Projects</a></li>
</ul>
</nav>
<!-- Section 1: About Me -->
<section id="about">
<h2>Fred Motta</h2>
<img id="img-fred"
src="https://media.licdn.com/dms/image/D5603AQErkP7OXdlYWg/profile-displayphoto-shrink_800_800/0/1702590874568?e=1710374400&v=beta&t=vvyGsPSvUi8TG1dlzYHTS_CX6tTK33LM4RwnehJvwRE"
alt="Fred Motta" />
<p>Fred is currently a student in the UCRX EdX Coding bootcamp</p>
</section>
<!-- Section 2: Contact Info -->
<section id="contact">
<h2>Contact Info</h2>
<ul>
<li><strong>Email:</strong> <a href="#" title="anchor to mail">
<a href="mailto:motta@g.ucla.edu">Motta</a></a></li>
<li><strong>Github:</strong> <a href="#" title="anchor to github" aria-label="github"></a>
<a href="https://github.com/fredm23579" title="guthub" aria-label="github">fm23579</a>
</li>
<li><strong>LinkedIn:</strong> <a href="#"><a href="https://www.linkedin.com/in/fred-motta/">
Freddy Motta</a></a>
</li>
</ul>
<!-- Section 3: Skills -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Git</li>
<li>GitHub</li>
<li>GitLab</li>
</ul>
<!-- Skills list -->
</section>
<!-- Section 4: Education -->
<section id="education">
<h2>Education</h2>
<!-- Unordered list with education details -->
<ul>
<li><strong>UCR Coding Bootcamp:</strong> Certificate in Full Stack Coding (In Progress)</li>
<li><strong>University at Albany, State University of New York:</strong> M.S. Physics</li>
<li><strong>University of California, Los Angeles:</strong> B.S. Physics / Mathematics</li>
</ul>
<!-- Education details -->
</section>
<!-- Section 5: Projects -->
<section id="projects">
<h2>Projects</h2>
<!-- Unordered list with project details -->
<ul>
<li><strong>Project 1:</strong> <a href="https://github.com/fredm23579/marketing-website-module1"
title="project 1">
<img id="img-project1" src="image.png" alt="project 1 picture" /></a></li>
<li><strong>Project 2:</strong> <a href="https://github.com/fredm23579/personal-profile"
title="project 2" aria-label="project 1 immage">
<img id="img-project2" src="Web capture_8-1-2024_172830_.jpeg" alt="project 2 picture" /></a>
</li>
</ul>
</section>
<!-- Section 8: Footer -->
<section id="footer">
<h2></h2>
<!-- Footer content -->
<p>If you have any questions, feel free to contact me!</p>
<a href="mailto:motta@g.ucla.edu" target="_blank" aria-label="email">Email</a>
<a href="https://www.linkedin.com/in/fred-motta/" aria="linkedin profile" aria-label="profile">LinkedIn</a>
<a href="https://github.com/fredm23579" aria-label="GitHub">Github</a>
<p>Copyright © 2024 Fred Motta</p>
</section>
</body>
</html>