-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.html
72 lines (72 loc) · 2.93 KB
/
countries.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Countries - Everest Educational Consultancy</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link rel="icon" type="image/jpeg" href="images/logo.jpg" />
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="logo">
<img src="images/logo.jpg" alt="logo">
</div>
<div class="company-name">
Everest Educational Consultancy
<i class="tag">One Purpose. One Mission. One Dream.</i>
</div>
</div>
<div class="navbar">
<ul class="nav-items">
<li><a href="index.html">home</a></li>
<li><a href="courses.html">courses</a></li>
<li class="active"><a href="#">countries</a></li>
<li><a href="about.html">about</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
<div class="banner">
<div class="slider"></div>
</div>
<div class="content">
<div class="main">
<h3>Countries</h3>
<hr>
<div class="usa">
<p>
The USA is the most popular destination among students in Nepal seeking to study abroad for several reasons. The academic excellence and holistic exposure available at US universities and the short-term and long-term career advantages once you invest in a US degree are the main reasons students choose the USA above other countries.
</p>
<img src="images/usa.jpg" alt="USA">
</div>
<div class="australia">
<p>
Your chance of getting into world ranked universities is infinitely better in Australia than in other destinations we promote. AEC works closely with several Times Higher Education and QS world ranked universities.It’s safer, friendlier and the weather’s much better!
</p>
<img src="images/australia.jpg" alt="Australia">
</div>
<div class="uk">
<p>
Given Nepal’s historic links with the UK, this destination has retained its attractiveness over the years for Nepali students. There are several reasons to choose the UK for your further studies. UK is home to institutions like Oxford and Cambridge and hundreds of others that showcase the kind of academic excellence that is conspicuous by its absence in most European nations.
</p>
<img src="images/uk.jpg" alt="UK">
</div>
</div>
<div class="widget">
<div class="widget-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam lacus urna, dapibus eget porta at.</p>
</div>
<div class="widget-content">
<p>Aliquam erat volutpat. Maecenas elementum lorem nibh, vel dignissim enim semper a. Aliquam non tellus.</p>
</div>
<div class="widget-content">
<p>Proin vulputate condimentum lacus, at aliquet dui vehicula egestas. Curabitur nulla augue, porttitor in nulla.</p>
</div>
</div>
</div>
<div class="footer">
<p>Everest Educational Consultancy © 2018. All Rights Reserved.</p>
</div>
</div>
</body>
</html>