-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtab_applicant.html
119 lines (114 loc) · 6.54 KB
/
tab_applicant.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
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/tab_applicant_styles.css">
<title>Applicants</title>
</head>
<body>
<div class="nav_container">
<header
class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom">
<ul class="nav nav-tabs">
<li>
<a href="index_company.html" class="nav-link px-2">Home</a>
</li>
<li>
<a href="tab_applicant.html" class="nav-link px-2 link-secondary">Applicants</a>
</li>
</ul>
<div class="col-md-3 text-end">
<button type="button" class="btn btn-outline-primary">Log out</button>
</div>
</header>
</div>
<main>
<ul>
<li>
<div class="container my-5">
<div class="p-5 text-center bg-body-tertiary rounded-3">
<h1>Elizabeth Anderson</h1>
<h4><strong>Major:</strong>Agronomy</h4>
<h4><strong>Graduation year:</strong>2024</h4>
<p>I am a senior agriculture student with a passion for sustainable farming and a proven track record of
academic excellence. My dedication to the field is evident in my coursework, research, and extracurricular
activities, which include internships on farms and participation in agricultural clubs. As I embark on my
journey into the professional world, I am eager to contribute my knowledge and enthusiasm to a dynamic
agricultural team. I am open to relocating to pursue exciting opportunities and am committed to fostering
innovation and sustainability in agriculture. Let's connect to explore how I can contribute to your
agricultural project's success.</p>
<div class="d-inline-flex gap-2 mb-5">
<button class="d-inline-flex align-items-center btn btn-primary btn-lg px-4 rounded-pill" type="button">
View Resume
</button>
</div>
</div>
</div>
<div class="container my-5">
<div class="p-5 text-center bg-body-tertiary rounded-3">
<h1>Laura Clark</h1>
<h4><strong>Major:</strong>Agribusiness</h4>
<h4><strong>Graduation year:</strong>2027</h4>
<p>As a dedicated senior student pursuing a dual major in Agribusiness and Horticulture, I bring a unique
blend of business acumen and horticultural expertise to the agricultural landscape. With a consistent
track record of outstanding academic achievements, I've honed my skills in crop management, sustainable
agriculture practices, and agribusiness strategy. My passion for fostering growth within the agricultural
sector drives me to seek meaningful opportunities. I am more than willing to relocate to contribute my
knowledge and innovation to any agricultural endeavor. Let's cultivate a brighter future together, one
that's rooted in sustainable practices and flourishing landscapes.</p>
<div class="d-inline-flex gap-2 mb-5">
<button class="d-inline-flex align-items-center btn btn-primary btn-lg px-4 rounded-pill" type="button">
View Resume
</button>
</div>
</div>
</div>
<div class="container my-5">
<div class="p-5 text-center bg-body-tertiary rounded-3">
<h1>Robert Brown</h1>
<h4><strong>Major:</strong>Horticulture</h4>
<h4><strong>Graduation year:</strong>2026</h4>
<p>As a dedicated senior horticulture student, I possess a profound passion for nurturing the green world
around us. My academic journey has been marked by exceptional achievements, reflecting my commitment to
the science and art of plant cultivation and landscaping. I'm eager to embark on a career where I can
apply my in-depth knowledge and hands-on experience to create vibrant, sustainable environments. My
flexibility and readiness to relocate demonstrate my unwavering dedication to horticulture. I look forward
to contributing my expertise and collaborating with like-minded professionals to transform landscapes and
bring nature's beauty to life. Together, we can cultivate a greener, more vibrant future.</p>
<div class="d-inline-flex gap-2 mb-5">
<button class="d-inline-flex align-items-center btn btn-primary btn-lg px-4 rounded-pill" type="button">
View Resume
</button>
</div>
</div>
</div>
<div class="container my-5">
<div class="p-5 text-center bg-body-tertiary rounded-3">
<h1>Emily Wilson</h1>
<h4><strong>Major:</strong>Agricultural Engineering</h4>
<h4><strong>Graduation year:</strong>2025</h4>
<p>As a senior Agricultural Engineering student, I am driven by a passion for harnessing innovative
solutions to address complex agricultural challenges. With a proven track record of academic excellence, I
am well-equipped with the technical skills and knowledge needed to drive efficiency and sustainability in
the agricultural sector. Eager to contribute my expertise to real-world projects, I stand ready to embrace
new opportunities and challenges. My willingness to relocate demonstrates my commitment to making a
meaningful impact wherever I'm needed. I am excited to collaborate with fellow agriculture professionals,
applying my problem-solving abilities to advance the field and help feed a growing world population.</p>
<div class="d-inline-flex gap-2 mb-5">
<button class="d-inline-flex align-items-center btn btn-primary btn-lg px-4 rounded-pill" type="button">
View Resume
</button>
</div>
</div>
</div>
</li>
</ul>
</main>
</body>
</html>