-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (104 loc) · 2.67 KB
/
index.html
File metadata and controls
111 lines (104 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="Author" content="Jorysniel Mata" />
<meta name="Description" content=" Basic Website Portfolio " />
<meta property="og:title" content="Basic html Portfolio" />
<meta property="og:image" content="" />
<meta property="og:description" content="Basic website Portfolio" />
<meta name="viewport" content="width=device-width, iniitial-scale=1.0" />
<link rel="icon" href="" type="image/x-icon" />
<title>Basic html website</title>
</head>
<body>
<header>
<h3>Jorysniel Mata</h3>
<nav>
<a href="#"> Home</a>
<a href="Projects.html"> Projects</a>
<a href="articles.html"> Articles</a>
<a href="contact.html"> Contact</a>
</nav>
</header>
<main>
<section>
<h1>Frontend Developer</h1>
<p>Html Only with proper Layout, no styling</p>
</section>
<article>
<section>
<h2>Projects</h2>
<p>HTML Only Portfolio</p>
<p>Calculator</p>
<p>Quiz app</p>
<p> Countdown Timer</p>
<p>Product Upcoming Page</p>
</section>
<section>
<h2>Work Experience</h2>
<h3>Roadmap.sh</h3>
<p>Solved all the frontend projects</p>
<a href="">visit my profile</a>
</section>
<section>
<h2>OpenSource Work</h2>
<p> Contributed to 50 opensource project. Made my own projects.
</p>
<a>Visit my Github Profile</a>
</section>
<section>
<h2>Education</h2>
<p>Graduated with with 3.76 out of 4CGPA. Won Acme Hackathon. Organized 30 session</p>
<h4>Courses I Took></h4>
<ul>
<li>Object Oriented Programming</li>
<li>Data Structures and Algorithms</li>
<li>Web Engineering</li>
<li>Artificial Intelligence</li>
<li>Human Computer Interaction</li>
<li>Computer Graphics</li>
<li>Database Management Systems</li>
<li>Distributed Database Systems</li>
<li>Discreet Mathematics</li>
<li></li>
</ul>
</section>
</article>
<section>
<h2>Reviews from my Teachers</h2>
<article>
<blockquote cite="#"> John Doe was a brilliant student; alwas stood out with his
assignments.
</blockquote>
<p> Jane Doe
<br>
Assistant Professor
</p>
</article>
<article>
<blockquote cite="#"> John Doe was a brilliant student; alwas stood out with his
assignments.
</blockquote>
<p> Jane Doe
<br>
Assistant Professor
</p>
</article>
<article>
<blockquote cite="#"> John Doe was a brilliant student; alwas stood out with his
assignments.
</blockquote>
<p> Jane Doe
<br>
Assistant Professor
</p>
</article>
</section>
<footer>
<p>Copyright © 2025 All rights reserved
</p>
</footer>
</main>
</body>
</html>