Form Using React
Form Using React
TAXILA
Subject: WE LAB
LAB TASK 8
Dated: 18/10/2024(Friday)
Submitted By:
Wajeeha Islam (22-SE-18)
Submitted To:
function Education(){
return(
<div>
<h2>Educatin</h2>
<table>
<thead>
<tr><th>Degree</th>
<th>Institution</th>
<th>Year</th>
<th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Bachelor's in Software Engineering</td>
<td>UET Taxila</td>
<td>2022 - Present</td>
<td>A</td>
</tr>
<tr>
<td>Intermediate in Pre-Engineering</td>
<td>Jinnah Education System College</td>
<td>2020 - 2022</td>
<td>A+</td>
</tr>
<tr>
<td>Matriculation in Science</td>
<td>Jinnah Education System School</td>
<td>2018 - 2020</td>
<td>A</td>
</tr>
</tbody>
</table>
</div>
);
}
function Experience(){
return(
<div>
<h2>Experience</h2><ul>
<li>Member of AICP UET Taxila (2023 - Present)</li>
<li>Intern at Orcard Tech Solutions (Summer 2023)</li>
<li>Freelance Web Developer - Personal Projects (2022-Present)</li>
</ul>
</div>
);
}
import './App.css';
import React from 'react';
import About from './About';
import Experience from './Experience';
import Education from './Education';
function App() {
const objective = "A highly motivated Software Engineering student seeking to enhance skills
in software development and project mangement.";
return(
<div className="App">
<h1>Curriculum Vitae</h1>
<p>{objective}</p>
<About username="Wajeeha Islam"/>
<Experience/>
<Education/>
</div>
);
}
h1 {
margin-bottom: 20px;
}
h2 {
color: #2c3e50;
margin-top: 20px;
}
table {
color: darkgrey;
width: 60%;
margin: 20px auto;
border-collapse: collapse;
}
table, th, td {
color: grey;
border: 1px solid #ddd;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
OUTPUT: