extrtech#1 #2

Open
tribikram wants to merge 2 commits from extrtech#1 into master
  1. 123
      public/frontend/css/style.css
  2. 8
      public/frontend/icons/side-bars.svg
  3. BIN
      public/frontend/images/smiling-girls-at-meeting.png
  4. BIN
      public/frontend/images/study-abroad-banner.png
  5. BIN
      public/frontend/images/sydney-Image.png
  6. BIN
      public/frontend/images/university0fsydney.png
  7. 129
      resources/views/study-abroad-detail.blade.php
  8. 130
      resources/views/study-abroad.blade.php
  9. 7
      routes/web.php

@ -10,6 +10,17 @@ body {
p{ p{
line-height: 1.6rem; line-height: 1.6rem;
} }
h1{
font-weight: 700;
font-size: 40px;
line-height: 60px;
align-items: center;
}
h2{
font-weight: 600;
font-size: 32px;
line-height: 48px;
}
/* new nav*/ /* new nav*/
.header { .header {
padding: 0 6rem; padding: 0 6rem;
@ -51,6 +62,10 @@ p{
.nav-link:hover, .nav-link:hover,
.nav-link:active { .nav-link:active {
color: #326CBF !important; color: #326CBF !important;
text-decoration: underline;
text-underline-offset: 8px;
text-decoration-color: #326CBF;
text-decoration-thickness: 3px;
} }
.mobile-navbar-btn { .mobile-navbar-btn {
@ -282,12 +297,20 @@ Responsive Codes
/* homepage service section css */ /* homepage service section css */
.services-section, .services-section,
.blog-section{ .blog-section,
.study-australia-desc,
.study-sydney-section,
.study-melbourne-section,
.study-detail-section,
.scholarship-section{
padding: 3rem 6rem; padding: 3rem 6rem;
} }
.services-section .row, .services-section .row,
.why-us-section .row, .why-us-section .row,
.testimonials-section .row{ .testimonials-section .row,
.study-melbourne-section .row,
.study-detail-section .row,
.scholarship-section .row{
display: flex; display: flex;
align-items: center; align-items: center;
} }
@ -550,7 +573,103 @@ Responsive Codes
} }
/* blog ection css end */ /* blog ection css end */
/* study abroad css starts */
.abroad-banner-section{
padding: 3rem 6rem;
height: 50vh;
background-repeat: no-repeat;
background-size: cover !important;
position: relative;
}
.study-sydney-section{
background: #EBF3FF;
}
.study-sydney-section .row{
display: flex;
align-items: center;
}
.sydney-img{
padding: 2rem 0 0 5rem;
}
.sydney-desc h2{
color: #E22899;
}
.sydney-desc p{
margin-bottom: 2rem;
}
.sydney-desc a{
background: #E22899;
border-radius: 5px;
text-decoration: none;
color: #FFFFFF;
padding: 10px 20px;
}
/* study abroad css ends */
/* breadcrumb css */
.abroad-banner-section .breadcrumb{
float: right;
}
.abroad-banner-section .breadcrumb a{
text-decoration: none;
color: #FFFFFF;
}
.studyabroad-banner-header{
position: absolute;
margin-bottom: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.studyabroad-banner-header h1{
font-weight: 700;
font-size: 46px;
line-height: 4rem;
color: #FFFFFF;
text-align: center;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.studyabroad-banner-header h5{
color: #FFFFFF;
}
.study-australia-desc h1{
font-weight: 700;
font-size: 40px;
line-height: 60px;
text-align: center;
color: #296AC7;
}
/* study detail css starts */
.study-detail-desc h1,
.scholarship-desc h1,
.scholarship-desc h3{
color: #296AC7;
}
.universities-card{
background: #FFFFFF;
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
padding: 20px;
margin: 20px 0;
}
.universities-card h5{
font-weight: 700;
margin-top: 1rem;
font-size: 16px;
line-height: 24px;
color: #296AC7;
}
.universities-card img,
.scholarship-img img{
border-radius: 8px;
}
.scholarship-img{
padding: 2rem;
}
.scholarship-desc p{
margin: 1rem 0;
}
/* Footer Css */ /* Footer Css */
.footer{ .footer{
background: #296AC7; background: #296AC7;

@ -0,0 +1,8 @@
<svg width="94" height="27" viewBox="0 0 94 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 11.0001L12 2.00006" stroke="#E22899" stroke-width="2"/>
<path d="M81 26L92 17" stroke="#E22899" stroke-width="2"/>
<path d="M3 25L33 1" stroke="#E22899" stroke-width="2"/>
<path d="M43 25L73 1" stroke="#E22899" stroke-width="2"/>
<path d="M23 25L53 1" stroke="#E22899" stroke-width="2"/>
<path d="M63 25L93 1" stroke="#E22899" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

@ -0,0 +1,129 @@
@extends('layout.app')
@section('title')
<title>Study Abroad</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection
@section('content')
<section class="study-detail-section">
<div class="row">
<div class="col-md-6">
<div class="study-detail-desc">
<h1>Study in Sydney</h1>
<p>
Upon completing your studies in Australia, you’ll be ready to work in today’s competitive international job market. Australia is home to some of the finest research institutions in the world. The education provided fosters innovative, versatile, independent and critical thinking skills as you grow in the field of your choice.
<br><br>
Their high-quality academic programs range from mathematics, chemistry, biology, engineering and technology, among other study programs. Degrees obtained are recognised across the world.
<br><br>
Australia opens its doors to international students through public and private universities, vocational and English language institutions. At Expert Education, we’ll help you reach your academic goals in Australia. We provide honest, credible, and authentic education and migration counselling advice for Australia student visa requirements.
</p>
</div>
</div>
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
<section class="study-sydney-section">
<div class="study-detail-desc">
<h1>Available Universities and Courses </h1>
<p>
The Australian education system is guided by the Australian Qualifications Framework (AQF). The AQF facilitates pathways through formal qualifications by connecting schools, universities and vocational education systems together.
<br><br>
The studies in Australia cover several fields, ranging from accounting to health and medicine, engineering, travel and hospitality, business and management, among other specializations.
<br><br>
ET houses a team of professional consultants, and we are happy to assist you for Australia student visa requirements. There are many universities and courses available based on the location you choose to study. The popular Universities are:
</p>
</div>
<div class="row">
<div class="col-md-3">
<div class="universities-card">
<img src="{{url('frontend/images/university0fsydney.png')}}" class="w-100" alt="">
<h5>University of Sydney</h5>
</div>
</div>
<div class="col-md-3">
<div class="universities-card">
<img src="{{url('frontend/images/university0fsydney.png')}}" class="w-100" alt="">
<h5>University of Sydney</h5>
</div>
</div>
<div class="col-md-3">
<div class="universities-card">
<img src="{{url('frontend/images/university0fsydney.png')}}" class="w-100" alt="">
<h5>University of Sydney</h5>
</div>
</div>
<div class="col-md-3">
<div class="universities-card">
<img src="{{url('frontend/images/university0fsydney.png')}}" class="w-100" alt="">
<h5>University of Sydney</h5>
</div>
</div>
<p>We offer end-to-end counselling services to international students for those seeking to come or are already in Australia. From initial counselling on the prospects of higher studies to choosing the right education institution, understanding the Australia student visa process and travelling to Australia, career advice, migration and taxation details, we’re here to help. We’d love to hear from you! Just contact us and we will help you.</p>
</div>
</section>
<section class="scholarship-section">
<div class="row">
<div class="col-md-5">
<div class="scholarship-img">
<img src="{{url('frontend/images/smiling-girls-at-meeting.png')}}" class="w-100" alt="">
</div>
</div>
<div class="col-md-7">
<div class="scholarship-desc">
<h1>Fee, Scholarship, Cost of Living</h1>
<h3>Financial preparation for studying in Australia</h3>
<p>The cost of studying depends on the educational provider you select, the location and the chosen level of study.</p>
<h5>The fee structure of education differs based on the field you pursue.</h5>
<ul>
<li>Schools in Australia may cost around $7,800 to $30,000 (yearly).</li>
<li>Undergraduate Bachelor Degree is around $15,000 to $33,000 (yearly).</li>
<li>A postgraduate Master’s Degree can vary from $20,000 up to $37,000 (yearly).</li>
<li>Vocational Education and Training is around $4,000 to $22,000 (yearly).</li>
<li>English language studies can cost around $300 per week.</li>
<li>Doctoral degrees are around $14,000 to $37,000 (yearly).</li>
</ul>
</div>
</div>
</div>
</section>
<section class="study-sydney-section">
<div class="study-detail-desc">
<h1>Accomplishing academic goals worry-free!</h1>
<p>
Various scholarship opportunities are offered to international students to study without worrying about financial support. Every scholarship to study in Australia has a different set of requirements based on the institution selected to pursue studies.
<br><br>
Parents seeking a scholarship for their child can also directly visit the respective university website for more information.
<br><br>
However, if you need a helping hand, we can assist in advising the best scholarship to study in Australia and aid in its application processes.
</p>
<h1>Travel and Accomodation</h1>
<p>The average cost of living in Australia is a crucial factor to consider during your application and financial preparation.</p>
<p>Here are some of the approximate weekly costs involved in sharing a rental to home-staying and more.</p>
<ul>
<li>Homestay – $235 to $325 per week</li>
<li>Rental – $185 to $440 per week</li>
<li>Shared Rental – $95 to $215 per week</li>
<li>On-campus – $110 to $280 per week</li>
<li>English language studies can cost around $300 per week.</li>
<li>Hostels, Guesthouses – $90 to $150 per week</li>
</ul>
<p>If you choose a boarding school for your child in Australia, the yearly cost can range from $11,000 to $22,000. Similarly, other approximate weekly costs include:</p>
<ul>
<li>Gas and electricity – $10 to $20 per week</li>
<li>Groceries and eating out – $140 to $280 per week</li>
<li>Phone and Internet – $15 to $30 per week</li>
<li>Public transport – $30 to $60 per week</li>
<li>Private car – $150 to $260 per week</li>
<li>Entertainment – $80 to $150 per week</li>
</ul>
</div>
</section>
@endsection

@ -0,0 +1,130 @@
@extends('layout.app')
@section('title')
<title>Study Abroad</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection
@section('content')
<section class="abroad-banner-section" style="background: url('frontend/images/study-abroad-banner.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">name</li>
</ol>
</nav>
<div class="studyabroad-banner-header">
<h1>Study Abroad</h1>
<h5>Take a Right Step Towards Better Future</h5>
</div>
</section>
<section class="study-australia-desc">
<h1>Study in Australia</h1>
<p>Studying abroad really is the opportunity of a lifetime. It’s your chance to start your journey. You’ll also get to continue your education abroad at some of the world’s best universities. At ET Education & Visa, we work closely and diligently with students throughout the entire preparation process to significantly increase their chances of getting into their dream school, rather than just helping students choose a few universities & colleges in Australia for international students based on their interests and giving a brief overview of the admissions procedure.</p>
</section>
<section class="study-sydney-section">
<div class="row">
<div class="col-md-6">
<div class="sydney-desc">
<h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Study in Sydney</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<a href="study-abroad-detail">Read more</a>
</div>
</div>
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
<section class="study-melbourne-section">
<div class="row">
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
<div class="col-md-6">
<div class="sydney-desc">
<h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Study in Melbourne</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<a href="study-abroad-detail">Read more</a>
</div>
</div>
</div>
</section>
<section class="study-sydney-section">
<div class="row">
<div class="col-md-6">
<div class="sydney-desc">
<h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Study in Canberra</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<a href="study-abroad-detail">Read more</a>
</div>
</div>
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
<section class="study-melbourne-section">
<div class="row">
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
<div class="col-md-6">
<div class="sydney-desc">
<h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Study in Adelaide</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<a href="study-abroad-detail">Read more</a>
</div>
</div>
</div>
</section>
<section class="study-sydney-section">
<div class="row">
<div class="col-md-6">
<div class="sydney-desc">
<h2><img src="{{url('frontend/icons/side-bars.svg')}}" class="me-2" alt=""> Study in Perth</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<br><br>
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<a href="study-abroad-detail">Read more</a>
</div>
</div>
<div class="col-md-6">
<div class="sydney-img">
<img src="{{url('frontend/images/sydney-Image.png')}}" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
@endsection

@ -16,3 +16,10 @@ use Illuminate\Support\Facades\Route;
Route::get('/', function () { Route::get('/', function () {
return view('welcome'); return view('welcome');
}); });
Route::get('/study-abroad', function () {
return view('study-abroad');
});
Route::get('/study-abroad-detail', function () {
return view('study-abroad-detail');
});

Loading…
Cancel
Save