Tumgik
#<h3><img src= width= h
jalal5518 · 4 years
Photo
Tumblr media
نجوم الرياضة في الولايات المتّحدة يرحبون بإعلان بايدن رئيسًا للولايات المتّحدة https://ift.tt/3lgp980
0 notes
alwan2 · 5 years
Text
مر مثل القهوة حلو مثل الشوكولا
مر مثل القهوة حلو مثل الشوكولا
مر مثل القهوة حلو مثل الشوكولا
«هل أنتِ غبية؟ هل تحبين العيش في دور المغفلة؟ هل تحبين إهانة نفسكِ إلى هذا الحد؟ هل إذا كان له الاختيار بينكِ وبينها كنتِ تعتقدين أنه سيختاركِ أنتِ؟ لماذا؟… ضعي لهذه المهزلة حدًّا! أنتِ تجرحين نفسكِ ومَن حولكِ بأفكاركِ ومشاعركِ وأوهامكِ الغبية! سئمتُ من كذبكِ على نفسكِ وعليَّ، وسئمتكِ أنتِ شخصيًّا!». أردت الاختفاء، وكنت على وشك البكاء، لكنَّ شيئًا ما جعل الدموع…
View On WordPress
2 notes · View notes
Text
TSI/14801 (For Sale) Rumah Golf Lake Residence, Cluster San Lorenzo, Jakarta Barat, 8x15m, 2 Lt, SHM
TSI/14801 (For Sale) Rumah Golf Lake Residence, Cluster San Lorenzo, Jakarta Barat, 8x15m, 2 Lt, SHM
Tumblr media Tumblr media
TSI/14801 For Sale Rumah Golf Lake Residence, Cluster San Lorenzo, Jakarta Barat, 8x15m, 2 Lt, SHM
Harga Rp 6.000.000.000 Alamat Cengkareng, Jakarta Barat Deskripsi Properti Rumah Golf Lake Residence, lokasi strategis, dekat dgn toll bandara, dekat mall, RS, sekolah, security 7×24 jam, kondisi masih tersewa sampai Maret 2021, SHM
Luas Tanah 120 m² Dimensi 8×15 Luas Bangunan 160 m² Jumlah Lantai 2 P…
View On WordPress
0 notes
sdesignermagazine · 4 years
Photo
Tumblr media
Level Up Your CSS Skills with these 20 Pro CSS Tips
Front-end development is quickly becoming more and more focused on efficiency – faster loading and rendering through selector choice and minimizing code. Pre-processors like Less and SCSS go a long way in doing some of the work for us, but there are plenty of ways to write minimal, quick CSS the native way. This guide covers 20 Pro CSS Tips to help you cut down on duplicate rules and overrides, standardize the flow of styling across your layouts and will help you create a personal starting framework that is not only efficient, but solves many common problems.
1 – Use a CSS Reset
CSS reset libraries like normalize.css have been around for years, providing a clean slate for your site’s styles that help ensure better consistency across browsers. Most projects don’t really need all of the rules these libraries include, and can get by with one simple rule to remove all the margins and paddings applied to most elements in your layout by the browser’s default box-model:
* { box-sizing: border-box; margin: 0; padding: 0; }
Using the box-sizing declaration is optional – if you follow the Inherit box-sizing tip below, you can skip it.
2 – Inherit box-sizing
Let box-sizing be inherited from html:
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
This makes it easier to change box-sizing when code is introduced through 3rd party plugins or applications that use different behavior.
3 – Get Rid of Margin Hacks With Flexbox
How many times have you tried designing a grid, such as a portfolio or image gallery, where you used floats and then had to clear them or reset margins to get the columns to break into the number of rows you want? Get rid of nth-, first-, and last-child hacks by using the space-between property value in flexbox:
.flex-container { display: flex; justify-content: space-between; } .flex-container .item { flex-basis: 23%; }
4 – Use :not() to Style Borders on Lists
A very common practice in web design has been to use :last-child or :nth-child selectors to undo a style previously declared on the parent selector. Think of a navigation menu that uses borders to create a separator between each link, and the second rule added to take that border off the end:
.nav li { border-right: 1px solid #666; } .nav li:last-child { border-right: none; }
This is quite messy as it not only forces the browser to render things one way, then undo it for a specific selector. Resetting styles this way is sometimes unavoidable, but for the most part, you can use the :not() pseudo-class to only apply a style to the elements you want in one single statement:
.nav li:not(:last-child) { border-right: 1px solid #666; }
This says, put a border on all the .nav list items except the last one. Simple!
Sure, you can also use .nav li + li or even .nav li:first-child ~ li, but :not() will always be more semantic and easy to understand.
5 – Add line-height to body
The one thing that leads to inefficient stylesheets is repeating declarations over and over again. The better you get at planning your project and combining rules, the more fluid your CSS will be. One way to do this is understanding the cascade and how the styles you write for general selectors can be inherited elsewhere. Line height is one property you can set for your entire project, not only to minimize lines of code but to enforce a standard look to your site’s typography.
Rather than add line-height to each <p>, <h*> and so on, add it to body:
body { line-height: 1.5; }
Note we don’t declare a unit here – we just tell it to make the line height one and a half times more than the font size for the rendered text.
6 – Vertically-Center Anything
Setting a global rule to vertically center your layout is a great way to set a foundation for elegantly set content layouts where you’re not ready to use CSS Grid.
html, body { height: 100%; margin: 0; } body { -webkit-align-items: center; -ms-flex-align: center; align-items: center; display: -webkit-flex; display: flex; }
7 – Use SVG for Icons
SVG scales well for all resolution types and is supported in all browsers. So ditch your .png, .jpg, or .gif-jif-whatev files. Even FontAwesome now offers SVG Icon Fonts in FontAwesome 5. Setting SVG works just like any other image type:
.logo { background: url("logo.svg"); }
Accessibility tip:If you use SVGs for interactable elements such as buttons, and the SVG fails to load, a rule like this one will help maintain accessibility (make sure it has the appropriate aria attributes set in the HTML):
.no-svg .icon-only:after { content: attr(aria-label); }
8 – Use the “Owl” Selector
Using the universal selector (*) with the adjacent sibling selector (+) provides a powerful CSS capability that allows us to set rules for all elements in the flow of the document that specifically follow other elements:
* + * { margin-top: 1.5rem; }
This is another great trick that can help you create more uniform type and spacing. In the example above, all elements that follow other elements, like an H4 that follows an H3, or a paragraph following another paragraph, will each have at least 1.5rems of space (equal to about 30px.)
9 – Consistent Vertical Rhythm
Consistent vertical rhythm provides a visual aesthetic that makes content far more readable. Where the owl selector may be too general, use a universal selector (*) within an element to create a consistent vertical rhythm for specific sections of your layout:
.intro > * { margin-bottom: 1.25rem; }
10 – Use box-decoration-break For Prettier Wrapped Text
Say you want to apply uniform spacing, margins, highlights or background colors to long lines of text that wrap to more than one line, but don’t want the whole paragraph or heading to look like one large block. The box-decoration-break property allows you to apply styles to just the text while keeping padding and margins intact. This is particularly useful if you want to apply highlights on hover, or style sub-text in a slider to have a highlighted look:
.p { display: inline-block; box-decoration-break: clone; -o-box-decoration-break: clone; -webkit-box-decoration-break: clone; }
The inline-block declaration allows the colors, backgrounds, margins and padding to be applied to each line of text rather than the entire element, and the clone declaration makes sure those styles are applied consistently to each line equally.
11 – Equal-Width Table Cells
Tables can be a pain to work with so try using table-layout: fixed to keep cells at equal width:
.calendar { table-layout: fixed; }
12 – Force Empty Links to Show with Attribute Selectors
This is especially useful for links that are inserted via a CMS, which don’t usually have a class attribute and helps you style them specifically without generically affecting the cascade. For example, the <a> element has no text value but the href attribute has a link:
a[href^="http"]:empty::before { content: attr(href); }
13 – Style “Default” Links
Speaking of link styling, you can find a generic a style in just about every stylesheet. This forces you to write additional overrides and style rules for any links in a child element, and when working with a CMS like WordPress can lead to problems with your king link style trumping a button text color, for example. Try this less-intrusive way to add a style for “default” links:
a[href]:not([class]) { color: #999; text-decoration: none; transition: all ease-in-out .3s; }
Now the style will only apply itself to links that otherwise have no other style rule.
14 – Intrinsic Ratio Boxes
To create a box with an intrinsic ratio, all you need to do is apply top or bottom padding to a div:
.container { height: 0; padding-bottom: 20%; position: relative; } .container div { border: 2px dashed #ddd; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
Using 20% for padding makes the height of the box equal to 20% of its width. No matter the width of the viewport, the child div will keep its aspect ratio (100% / 20% = 5:1).
15 – Style Broken Images
This tip is less about code reduction and more about refining the detail of your designs. Broken images happen for a number of reasons, and are either unsightly or lead to confusion (just an empty element). Create more aesthetically-pleasing with this little bit of CSS:
img { display: block; font-family: Helvetica, Arial, sans-serif; font-weight: 300; height: auto; line-height: 2; position: relative; text-align: center; width: 100%; } img:before { content: "We're sorry, the image below is missing :("; display: block; margin-bottom: 10px; } img:after { content: "(url: " attr(src) ")"; display: block; font-size: 12px; }
16 – Use rem for Global Sizing; Use em for Local Sizing
After setting the base font size at the root, for example html{font-size: 15px;}, you can set font-size for containing elements to rem:
article { font-size: 1.25rem; } aside { font-size: .9rem; }
Then set the font size for textual elements to em:
h2 { font-size: 2em; } p { font-size: 1em; }
Now each containing element becomes compartmentalized and easier to style, more maintainable, and flexible.
17 – Hide Autoplay Videos That Aren’t Muted
This is a great trick for a custom user stylesheet when working with content you can’t easily control from the source. This trick will help you avoid annoying your visitors with sound from an auto-playing video when the page is loaded, and again features the wonderful :not() pseudo-selector:
video[autoplay]:not([muted]) { display: none; }
18 – Use :root for Flexible Type
The font size in a responsive layout should be able to adjust to the viewport automatically, saving you the work of writing media-queries just to deal with font sizing. You can calculate the font size based on the viewport height and width using :root: and viewport units:
:root { font-size: calc(1vw + 1vh + .5vmin); }
Now you can utilize the root em unit based on the value calculated by :root:
body { font: 1rem/1.6 sans-serif; }
19 – Set font-size on Form Elements for a Better Mobile Experience
To avoid mobile browsers (iOS Safari, etc.) from zooming in on HTML form elements when a <select> drop-down is tapped, add font-size to the input styles:
input[type="text"], input[type="number"], select, textarea { font-size: 16px; }
20 – Use CSS Variables!
Last but not least, the most powerful CSS level-up comes from CSS variables, which allow you to declare a set of common property values that can be reused via a keyword anywhere in the stylesheet. Your brand may have a set of colors to be used across the project to keep things consistent. Repeating these color values over and over again in your CSS is not only a chore, but also error prone. If a color needs to be changed at some point, your forced to find-and-replace, which is not reliable or fast, and when building products for end-users, variables make customization that much easier. For example:
:root { --main-color: #06c; --accent-color: #999; } h1, h2, h3 { color: var(--main-color); } a[href]:not([class]), p, footer span{ color: var(--accent-color); }
0 notes
jalal5518 · 4 years
Photo
Tumblr media
قراء ماركا يختارون راموس أفضل مدافع في التاريخ وترشيحه للكرة الذهبية https://ift.tt/3eycKty
0 notes
staybendy · 5 years
Text
Lack of vitamin D connected to premature death, study says
Tumblr media
<div> <div> <p><IMG ALT="a nurse to the sick woman" height="150" SRC="https://www.naturalhealth365.com/wp-content/uploads/2014/11/nurse-with-sick-woman-150x150.jpg" width="150" />(NaturalHealth365) depending on how old you are young, you may remember when vitamin D started gaining popularity in Western medicine for bone-protective properties.  But in recent years, conventionally trained medical professionals are beginning to realize the great danger of a lack of vitamin D can have on immune function and overall health.
for example, schools of Harvard University T. H. Chan health said that &so-called; vitamin D deficiency is a global problem.&  But it– <em>not only Harvard, many researchers have reported that the optimum level of vitamin D3 that effectively helps in preventing premature death for any reason.&For example, recently the annual meeting of the European Association for the study of diabetes (easd) in Barcelona, Spain, showed that & ldquo;vitamin D deficiency is closely associated with increased mortality, especially in young and middle-aged people.products; <H2>to avoid lack of vitamin D in the body will drastically reduce health care costs <P>Dr. Frank garland along with his brother Cedric, pioneering vitamin D research and they observed that:
<ul> <Li>more than 600,000 cases of colorectal cancer and breast cancer could be prevented each year if vitamin D levels (worldwide) were increased. <Li> that while excessive sun exposure is certainly harmful, neoexpressionist beneficial UVB light can significantly cause the lack of vitamin D in the body. <p>like most pioneers, research from the garland brothers believed intriguing, but met with significant skepticism, given &so-called; anti-sun', a heavy sunscreen propaganda's 1980;s.  the garland once joked, new York times, that man can not make a single gram of vitamin D, Even if standing completely naked on the street from November to March in downtown Boston. <P>brothers garland opened a crucial emphasis I place on vitamin D to all my patients from new York in the cold season (winter) months. You see in such cities as Boston, new York, Cleveland and Chicago have higher mortality rates from cancer and disease in General, than such cities as San Diego, Honolulu and Miami – mainly because of this Association between extremely low vitamin D levels and chronic diseases throughout the region. <H3>not available & rsquo;T lie: to acquire knowledge and take the test <p>According to William B. Grant, Ph. D., Director, sunlight, nutrition and health research center Says, & ldquo;currently, there are about 100 diseases associated with low serum 25-hydroxyvitamin D concentration.&product; <p>Michael F. Holick, Ph. D., Professor of medicine, physiology and Biophysics at the Medical school at Boston University and a leading expert on vitamin D, and says:
  <P>and “it is now documented that in the absence of any sun exposure 1,000 IU of vitamin D3 per day is necessary to maintain normal levels of 25-hydroxyvitamin D in the circulation. The analysis of data from NHANES III, it was shown that neither children nor adults do not get enough vitamin D from food or from dietary supplements&.products;
therefore, no matter where you live, if you have not been tested or your children have never been tested, it's time. <P>ask your doctor for a simple & ldquo;25(Oh)D blood” Of order to effectively assess its current state. As mentioned above, if you're below 30 ng/ml, be sure to focus on achieving an optimal level of about 50 ng/ml, according to the the vitamin D Council website plus many other natural health organizations.
and the best way to achieve optimal vitamin D levels in the blood <p>no, it's not a diet.  actually, the most effective way to get enough vitamin D when exposed to sunlight.
in fact, a relatively short excerpt from skin &so-called; ultraviolet B& rays – especially in the summer – that's all you need. Contrary to popular belief, you do a not need to tan or burn your skin to get enough vitamin D from the sun. <P>the amount of vitamin D you produce from sun, will depend on the time of day and the season or the angle of the sun&.nbsp; it was obvious that to ensure sufficient vitamin D levels, those with darker skin need more time in the sun against a lighter skinned people.
for example, a swimsuit in about 15-20 minutes on Cape cod in June or July at noon time is about 20 000 IU of vitamin D orally.  of course, age and nutrition/health status of the person will also play a role in the ability to generate vitamin D from sun exposure.
in reality, optimizing your vitamin D levels, sun exposure, will help prevent, not cause skin cancer. When you expose your skin vitamin D, your skin synthesizes vitamin D3 sulfate. But remember, if you use sunscreen, you will not be able to produce vitamin D from the sun.
and do I have to take vitamin D supplementation or not?
you may be thinking, & ldquo;but I live in the largely residential area of the cloud, how do I change my lack of vitamin D?&product; <p>what&myth – not you can still generate vitamin D on a cloudy day.  But your holistically-trained physician should be able to help you choose the bioavailability of vitamin D3 from a personal dosage, which reflects the most recent test results. <P>Generally speaking, most people with low vitamin D levels usually Supplement with 5,000 to 10,000 IU / day, and then, of course, are re-testing for several months&.nbsp; with other nutrients that help in the process of absorption of vitamin K2, magnesium, zinc and boron.  of course, & ldquo;anti-inflammatory” from your diet is helpful as well. <p><b>final word about the health benefits of vitamin D. Dr. Frank garland, mark, epidemiologist and vitamin D pioneer helped catapult the study of vitamin D in a conservative course of research, bringing to light that his absence was a problem, causing widespread vitamin D deficiency in certain parts of the country. <P>his work helped establish a link between certain cancers and vitamin D, such as colon and breast cancer.
Now, thanks to brothers garland, many of their colleagues continue to study the powerful health-preserving and strengthening effects of vitamin D. the result, don't ignore this powerful substance for optimal health. <P><strong>editor–that  the NaturalHealth365 store offers the highest quality vitamin D/K2 Supplement on the market.  this easy-to-absorb liquid nutritional Supplement helps to maintain the cardiovascular system and immune function.  <span style="text-decoration: underline;"><strong>Click here to order today. <p><I>about the author <P>the sources for this article include:
<P>Harvard.edu in SciTechDaily.com in AJPH.org in NIH.gov in NIH.gov in NIH.gov
the post lack of vitamin D are associated with premature death, study says appeared first on NaturalHealth365. <div>
this content was originally published here.
0 notes
parsaweb-blog · 5 years
Text
آموزش طراحی سایت- قسمت دوم
ساخت اولین صفحه وب سایت شما در آموزش طراحی سایت
در هر جای کامپیوتر که دوست دارید فلدری به نام my-first-webpage  بسازید. textEditor خودتان را باز کنید کد زیر را در آن کپی کنید.
<!DOCTYPE HTML PUBLIC “-//W3C//DTD XHTML 1.0 STRICT//EN”
“HTTP://WWW.W3.ORG/TR/XHTML1/DTD/XHTML1-STRICT.DTD”>
<HTML XMLNS=”HTTP://WWW.W3.ORG/1999/XHTML”>
<HEAD>
<TITLE>THE MOST BASIC WEB PAGE IN THE WORLD</TITLE>
<META HTTP-EQUIV=”CONTENT-TYPE”
CONTENT=”TEXT/HTML; CHARSET=UTF-8″/>
</HEAD>
<BODY>
<H1>THE MOST BASIC WEB PAGE IN THE WORLD</H1>
<P>THIS IS A VERY SIMPLE WEB PAGE TO GET YOU STARTED.
HOPEFULLY YOU WILL GET TO SEE HOW THE MARKUP THAT DRIVES
THE PAGE RELATES TO THE END RESULT THAT YOU CAN SEE ON
SCREEN.</P>
<P>THIS IS ANOTHER PARAGRAPH, BY THE WAY. JUST TO SHOW HOW IT
WORKS.</P>
</BODY>
</HTML>
از textEditor گزینه file>save as را بزنید پنجره ای مانند زیر نمایش می یابد:
Tumblr media
مسیر فلدر قبل را بدهید تا در آنجا ذخیره شود. نام فایل را انتخاب نمایید البته با پسوند html مانند:
از منوی کشویی save as type گزینه all files را انتخاب نمایید. از منوی کشویی Encoding گزینه UTF-8 را انتخاب نمایید و حالا دکمه save را بزنید. حالا در فلدر مورد نظر فایلتان را با مرورگر باز نمایید . تبریک شما اولین صفحه وب خودتان را ساختید!
Tumblr media
اهمیت
UTF-8
این کاراکتر ست (Character Set)  اجازه می دهد زبان های دیگر هم بتوانند به درستی صفحه شما را ببینند. فرض کنید یک کاربر کره ای که زبان انگلیسی ندارد بخواهد صفحه شما را ببیند ، این کاراکتر ست است که اجازه میدهد شما با مشکلی مواجه نشوید.
اولین آنالیز شما
یک مقایسه و یک آنالیز ساده بین کد شما و ظاهری که در مرورگر می بینید ، می تواند در یادگیری شما کمک شایانی کند: زمان مناسبی است که در مورد 2 تگ p  و h1 و البته عناصر دیگر صحبت کنیم.
Tumblr media
تیترها و سلسله مراتب آن(H)
تیترها عناصر بلاک و بسته شونده (container)هستند و سلسله مراتب مخصوص به خود را دارند و از h1  تا h6  وجود دارند. از h1  برای مهم ترین تیتر از h2 برای تیتر کم  ارزش تر و از h3 برای تیتر کم ارزش تر از h2 و به همین ترتیب تا  h6
پاراگراف ((p
یک تگ بلاک و بسته شونده  (container) است و برای یک بلوک متنی استفاده می شود این بدان معنی است که متن های خوتان را باید داخل این تگ قرار دهید.
لیست (list)
فرض کنید می خواهید لیست وب سایت های طراحی شده خودتان را نمایش دهید ، به لیستی که من در یک مجله خبری مشاهده کرده ام  یک سری بزنید.
و اما لیست ها دو گونه اند:
Ol-order list: برای لیست های ترتیبی
Ul-unorder list : برای لیستهای غیر ترتیبی
به مثال زیر دقت کنید:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD XHTML 1.0 STRICT//EN”
“HTTP://WWW.W3.ORG/TR/XHTML1/DTD/XHTML1-STRICT.DTD”>
<HTML XMLNS=”HTTP://WWW.W3.ORG/1999/XHTML”>
<HEAD>
<TITLE>LISTS – AN INTRODUCTION</TITLE>
<META HTTP-EQUIV=”CONTENT-TYPE”
CONTENT=”TEXT/HTML; CHARSET=UTF-8″/>
</HEAD>
<BODY>
<H1>LISTS – AN INTRODUCTION </H1>
<P>HERE’S A PARAGRAPH. A LOVELY, CONCISE LITTLE PARAGRAPH.</P>
<P>HERE COMES ANOTHER ONE, FOLLOWED BY A SUBHEADING.</P>
<H2>A SUBHEADING HERE</H2>
<P>AND NOW FOR A LIST OR TWO:</P>
<UL>
<LI>THIS IS A BULLETED LIST</LI>
<LI>NO ORDER APPLIED</LI>
<LI>JUST A BUNCH OF POINTS WE WANT TO MAKE</LI>
</UL>
<P>AND HERE’S AN ORDERED LIST:</P>
<OL>
<LI>THIS IS THE FIRST ITEM</LI>
<LI>FOLLOWED BY THIS ONE</LI>
<LI>AND ONE MORE FOR LUCK</LI>
</OL>
</BODY>
</HTML>
و حالا خروجی کار رو در مرورگر ببینید تا تفاوت های دو نوع لیست را ببینید. ظاهر همه لیست ها به همین سادگی نیستند و امروزه در طراحی سایت حرفه ای استفاده زیادی دارد. برای نمونه می توانید به فوتر وب سایت یک شرکت طراحی سایت تهران نگاهی بیاندازید تا دیدتان نسبت به استفاده از این عنصر بازتر شود.
Tumblr media
مفهوم کامنت و لزوم استفاده از آن
در یادگیری و آموزش طراحی سایت این مطلب را مدنظر داشته باشید که نظم در برنامه نویسی ارزش بالایی دارد به طوری که می بایست برنامه نوشته شده توسط شما قابل دنبال کردن توسط برنامه نویس دیگری باشد. یکی از ابزارهایی که در این زمینه به ما کمک می کند گذاشتن کامنت است.
کامنت در واقع نوشته هایی است که در سورس برنامه وجود دارند ولی در نمایش خروجی ظاهر نمی شوند . کامنت گذاری در HTML  و CSS و JavaScript  کاربرد زیادی دارند. به مثال زیر دقت کنید:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD XHTML 1.0 STRICT//EN”
“HTTP://WWW.W3.ORG/TR/XHTML1/DTD/XHTML1-STRICT.DTD”>
<HTML XMLNS=”HTTP://WWW.W3.ORG/1999/XHTML”>
<HEAD>
<TITLE>COMMENT EXAMPLE</TITLE>
<META HTTP-EQUIV=”CONTENT-TYPE”
CONTENT=”TEXT/HTML; CHARSET=UTF-8″/>
</HEAD>
<BODY>
<P>I REALLY, <EM>REALLY</EM> LIKE THIS XHTML STUFF.</P>
<!– ADDED EMPHASIS USING THE EM ELEMENT. HANDY ONE, THAT. –>
</BODY>
</HTML>
و خروجی بدین صورت است:
Tumblr media
در واقع با کامنت توضیح داده است  که چرا از تگ em  استفاده کرده است. کامنت  گذاری در HTML   بیشتر برای جدا کردن قسمت های مختلف در طراحی سایت تهران محسوب می شود. به طور مثال قسمت منو را با کامنت مشخص می کنیم و می گویم  مثلا این قسمت از HTML برای منو است.
نحوه نوشن کامنت در HTML بدین صورت است:
<!-BEGINN NAVIGATION –>
در جاوا اسکریپت به 2 صورت زیر صورت :
/* COMMENT  */
// COMMENT
و در CSS :
/*  COMMENT  */
بگذارید یک ذره جلوتر برویم و یک استفاده حرفه ای تر کامنت را هم براتون توضیح بدهم :
استفاده دیگر کامنت زمانی است که می خواهید قسمتی از کد خودتونو  نمایش ندید و یا برای مدتی پنهان کنید در آن زمان است که قسمت مربوطه را کامنت می کنید که بعدا هم قابل برگشت است .
<!DOCTYPE HTML PUBLIC “-//W3C//DTD XHTML 1.0 STRICT//EN” “HTTP://WWW.W3.ORG/TR/XHTML1/DTD/XHTML1-STRICT.DTD”>
<HTML XMLNS=”HTTP://WWW.W3.ORG/1999/XHTML”>
<HEAD>
<TITLE>COMMENTING OUT XHTML</TITLE>
<META HTTP-EQUIV=”CONTENT-TYPE” CONTENT=”TEXT/HTML; CHARSET=UTF-8″/>
</HEAD>
<BODY>
<H1>CURRENT STOCK</H1>
<P>THE FOLLOWING ITEMS ARE AVAILABLE FOR ORDER:</P>
<UL>
<LI>DARK SMOKE WINDOW TINTING</LI>
<LI>BRONZE WINDOW TINTING</LI>
<!-<LI>SPRAY MOUNT</LI>
<LI>CRAFT KNIFE</LI> –>
</UL>
</BODY>
</HTML>
و حالا خروجی برنامه
Tumblr media
دقت کنید که 2 آیتم  li نمایش نمی یابد ولی حذف نشده تا شاید در آینده دوباره فعال شوند.
کاراکترها وسمبل ها و نحوه استفاده در  XHTML
بسیاری موارد پیش می آید که می خواهید در متن خود مانند نوشتن همین مقاله از کاراکترهایی مثل > ویا &  و یا هر کاراکتر خاص دیگری استفاده کنید. در XHTML  ما به جای درج مستقیم این کاراکترها از کد خاصی که برای آنها تعریف شده استفاده می کنیم. مثلا به جای & از &   استفاده می کنیم و این یکی از تفاوت های HTML با XHTML است ، یعنی اگر بدین صورت عمل نکنیم سند ما Valid نخواهد شد.
برای آگاهی از این کد ها میتوانید به این آدرس رجوع کنید.
صفحه اول ، نقطه شروع هر وب سایت
نقطه شروع هر وب سایت صفحه اول آن است که با نام  index  ویا default  شناخته خواهد شد. ما در یک مثال کاربردی تگ هایی که تا به حال آموختیم به اضافه دو خصوصیت جدید اضافه کردن تصویر و ارسال ایمیل را خواهیم آموخت.
مثال زیر را در ادیتور خود بنویسید و با نام index.html  ذخیره نمایید
<META HTTP-EQUIV=”CONTENT-TYPE” CONTENT=”TEXT/HTML; CHARSET=UTF-8″/>
</HEAD>
<BODY>
<H1>BUBBLEUNDER.COM</H1>
<P>DIVING CLUB FOR THE SOUTH-WEST UK – LET’S MAKE A SPLASH!</P>
<H2>WELCOME TO OUR SUPER-DOOPER SCUBA SITE</H2>
<P>GLAD YOU COULD DROP IN AND SHARE SOME AIR WITH US! YOU’VE
PASSED YOUR UNDERWATER NAVIGATION SKILLS AND SUCCESSFULLY
FOUND YOUR WAY TO THE START POINT – OR IN THIS CASE, OUR HOME
PAGE.</P>
<H3>ABOUT US</H3>
<P><IMG  SRC=”DIVERS-CIRCLE.JPG” WIDTH=”200″ HEIGHT=”162″
ALT=”A CIRCLE OF DIVERS PRACTICE THEIR SKILLS”/></P><P>WHEN WE’RE NOT DIVING, WE OFTEN MEET UP IN A LOCAL PUB
TO TALK ABOUT OUR RECENT ADVENTURES (ANY EXCUSE, EH?).</P>
<H3>CONTACT US</H3>
<P>TO FIND OUT MORE, CONTACT CLUB SECRETARY BOB DOBALINA
ON 01793 641207 OR <A
HREF=”MAILTO:TEST@TEST,COM”>EMAIL
[email protected]</A>.</P> </BODY>
</HTML>
حالا خروجی را ببینیم :
Tumblr media
در مورد تگ های p  و h قبلا صحبت کرده ایم ولی اینجا در قسمت contact متن آبی رنگی را می بینید که لینک است یعنی تگ a ولی یک لینک معمولی نیست .این یک لینک برای ارسال ایمیل است و اگر در ویندوز خود برنامه مدیریت ایمیل داشته باشید مانند outlook با آن می توانید به شخص مورد نظر ایمیل ارسال نمایید.
صفحاتی که تا به حال درست کرده ایم به صورت متنی و بسیار کسل کننده است و برای جذابیت بیشتر می بایست از عکس ها استفاده کرد . با استفاده از تگ img می توان تصاویر را به صفحه اضافه کرد. بدین ترتیب :
<IMG  SRC=”DIVERS-CIRCLE.JPG”  WIDTH=”200″ HEIGHT=”162″ ALT=”A CIRCLE OF DIVERS PRACTICE THEIR SKILLS” />
این تگ یک تگ empty است و دارای attribute های زیر است :
·         src  برای آدرس عکس
·         alt  برای توضیح تصویر
·         width عرض تصویر به پیکسل
·         height ارتفاع تصویر به پیکسل
فقط دقت نمایید که آدرس از جایی که صفحه شما قرار دارد حساب میشود یعنی اگر تصویر در همان فولدری باشد که صفحه شما قرار دارد به طریق بالا آدرس می گیرد.
Alt هم متنی است که عکس را توصیف می کند و در مرورگرهای متنی و یا زمانی که مرورگر تصاویر را نشان نمیدهد به جای نمایش عکس این متن نمایش می یابد و اما فایده دیگر اهمیتش برای موتورهای جستجو است.
این نکته را هم در پایان اضافه کنم که برای Valid شدن در XHTML صفحه وجود alt  الزامی است .
0 notes
gangasagaryatra · 5 years
Link
BOOK GangaSagar Tour Package From Kolkata | 8145302135 | GangaSagarTOURISM {"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.gangasagar-tourism.com/#website","url":"https://www.gangasagar-tourism.com/","name":"GangaSagar-TOURISM.com","publisher":{"@id":"https://www.gangasagar-tourism.com/#organization"},"potentialAction":{"@type":"SearchAction","target":"https://www.gangasagar-tourism.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://www.gangasagar-tourism.com/#webpage","url":"https://www.gangasagar-tourism.com/","inLanguage":"en-US","name":"BOOK GangaSagar Tour Package From Kolkata | 8145302135 | GangaSagarTOURISM","isPartOf":{"@id":"https://www.gangasagar-tourism.com/#website"},"about":{"@id":"https://www.gangasagar-tourism.com/#organization"},"datePublished":"2018-11-27T09:16:54+00:00","dateModified":"2019-03-29T06:35:27+00:00","description":"BOOK Gangasagar tour package from kolkata, gangasagar hotel booking, gangasagar mela, gangasagar tourism, gangasagar tour package from kolkata,room at gangasagar ,best room at gangasagar west bengal, gangasagar yatra package,how to reach gangasagar,kolkata to gangasagar tour package, same day gangasagar tour from kolkata, kolkata to gangasagar 1N/2D Package, gangasagar mela 2020 hotel booking,gangasagar mela 2020 accommodation booking,gangasagar mela 2020 yatra package, kolkata to gangasagar car rent,how to reach gangasagar,"}]} window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11.2.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11.2.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.gangasagar-tourism.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.1.1"}}; !function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings); img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } html{font-size:100%;}a,.page-title{color:#fb2056;}a:hover,a:focus{color:#fb2056;}body,button,input,select,textarea{font-family:'Noto Sans',sans-serif;font-weight:400;font-size:16px;font-size:1rem;line-height:1.49;}blockquote{border-color:rgba(251,32,86,0.15);}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6,.site-title,.site-title a{font-family:'Montserrat',sans-serif;font-weight:700;}.site-title{font-size:22px;font-size:1.375rem;}header .site-logo-img .custom-logo-link img{max-width:147px;}.astra-logo-svg{width:147px;}.ast-archive-description .ast-archive-title{font-size:40px;font-size:2.5rem;}.site-header .site-description{font-size:15px;font-size:0.9375rem;}.entry-title{font-size:30px;font-size:1.875rem;}.comment-reply-title{font-size:26px;font-size:1.625rem;}.ast-comment-list #cancel-comment-reply-link{font-size:16px;font-size:1rem;}h1,.entry-content h1{font-size:64px;font-size:4rem;}h2,.entry-content h2{font-size:32px;font-size:2rem;}h3,.entry-content h3{font-size:24px;font-size:1.5rem;}h4,.entry-content h4{font-size:20px;font-size:1.25rem;}h5,.entry-content h5{font-size:18px;font-size:1.125rem;}h6,.entry-content h6{font-size:15px;font-size:0.9375rem;}.ast-single-post .entry-title,.page-title{font-size:30px;font-size:1.875rem;}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:16px;font-size:1rem;}::selection{background-color:#fb2056;color:#ffffff;}body,h1,.entry-title a,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:#222222;}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:#fb2056;background-color:#fb2056;}.main-header-menu a,.ast-header-custom-item a{color:#222222;}.main-header-menu li:hover > a,.main-header-menu li:hover > .ast-menu-toggle,.main-header-menu .ast-masthead-custom-menu-items a:hover,.main-header-menu li.focus > a,.main-header-menu li.focus > .ast-menu-toggle,.main-header-menu .current-menu-item > a,.main-header-menu .current-menu-ancestor > a,.main-header-menu .current_page_item > a,.main-header-menu .current-menu-item > .ast-menu-toggle,.main-header-menu .current-menu-ancestor > .ast-menu-toggle,.main-header-menu .current_page_item > .ast-menu-toggle{color:#fb2056;}input:focus,input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="reset"]:focus,input[type="search"]:focus,textarea:focus{border-color:#fb2056;}input[type="radio"]:checked,input[type=reset],input[type="checkbox"]:checked,input[type="checkbox"]:hover:checked,input[type="checkbox"]:focus:checked,input[type=range]::-webkit-slider-thumb{border-color:#fb2056;background-color:#fb2056;box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:#fb2056;border-color:#fb2056;}.ast-small-footer{color:#d3d3d3;}.ast-small-footer > .ast-footer-overlay{background-color:#191919;}.ast-small-footer a{color:#fb2056;}.ast-small-footer a:hover{color:#fb2056;}.footer-adv .footer-adv-overlay{border-top-style:solid;border-top-color:#7a7a7a;}.ast-comment-meta{line-height:1.666666667;font-size:13px;font-size:0.8125rem;}.single .nav-links .nav-previous,.single .nav-links .nav-next,.single .ast-author-details .author-title,.ast-comment-meta{color:#fb2056;}.menu-toggle,button,.ast-button,.button,input#submit,input[type="button"],input[type="submit"],input[type="reset"]{border-radius:60px;padding:8px 38px;color:#ffffff;border-color:#fb2056;background-color:#fb2056;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.button:hover,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type="button"]:hover,input[type="button"]:focus,input[type="submit"]:hover,input[type="submit"]:focus{color:#ffffff;border-color:#fb2056;background-color:#fb2056;}.entry-meta,.entry-meta *{line-height:1.45;color:#fb2056;}.entry-meta a:hover,.entry-meta a:hover *,.entry-meta a:focus,.entry-meta a:focus *{color:#fb2056;}blockquote,blockquote a{color:#000000;}.ast-404-layout-1 .ast-404-text{font-size:200px;font-size:12.5rem;}.widget-title{font-size:22px;font-size:1.375rem;color:#222222;}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:#fb2056;}.secondary .calendar_wrap #today,.ast-progress-val span{background:#fb2056;}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:#fb2056;border-color:#fb2056;}.calendar_wrap #today > a{color:#ffffff;}.ast-pagination a,.page-links .page-link,.single .post-navigation a{color:#fb2056;}.ast-pagination a:hover,.ast-pagination a:focus,.ast-pagination > span:hover:not(.dots),.ast-pagination > span.current,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:#fb2056;}.ast-header-break-point .ast-mobile-menu-buttons-minimal.menu-toggle{background:transparent;color:#fb2056;}.ast-header-break-point .ast-mobile-menu-buttons-outline.menu-toggle{background:transparent;border:1px solid #fb2056;color:#fb2056;}.ast-header-break-point .ast-mobile-menu-buttons-fill.menu-toggle{background:#fb2056;}.main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button{padding-top:10px;padding-bottom:10px;padding-left:26px;padding-right:26px;border-style:solid;border-top-width:0px;border-right-width:0px;border-left-width:0px;border-bottom-width:0px;}.ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button{color:rgba(255,255,255,0.9);background-color:rgba(255,255,255,0);padding-top:8px;padding-bottom:8px;padding-left:22px;padding-right:22px;border-style:solid;border-color:rgba(255,255,255,0.9);border-top-width:2px;border-right-width:2px;border-left-width:2px;border-bottom-width:2px;}.ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{color:#ffffff;background-color:#fb2056;border-color:#fb2056;}@media (min-width:545px){.ast-page-builder-template .comments-area,.single.ast-page-builder-template .entry-header,.single.ast-page-builder-template .post-navigation{max-width:1240px;margin-left:auto;margin-right:auto;}}@media (max-width:768px){.ast-archive-description .ast-archive-title{font-size:40px;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:44px;}h2,.entry-content h2{font-size:25px;}h3,.entry-content h3{font-size:20px;}.ast-single-post .entry-title,.page-title{font-size:30px;}}@media (max-width:544px){.comment-reply-title{font-size:24px;font-size:1.6rem;}.ast-comment-meta{font-size:12px;font-size:0.8rem;}.widget-title{font-size:21px;font-size:1.4rem;}body,button,input,select,textarea{font-size:15px;font-size:0.9375rem;}.ast-comment-list #cancel-comment-reply-link{font-size:15px;font-size:0.9375rem;}#secondary,#secondary button,#secondary input,#secondary select,#secondary textarea{font-size:15px;font-size:0.9375rem;}.site-title{font-size:20px;font-size:1.25rem;}.ast-archive-description .ast-archive-title{font-size:40px;}.site-header .site-description{font-size:14px;font-size:0.875rem;}.entry-title{font-size:30px;}h1,.entry-content h1{font-size:30px;}h2,.entry-content h2{font-size:24px;}h3,.entry-content h3{font-size:20px;}h4,.entry-content h4{font-size:19px;font-size:1.1875rem;}h5,.entry-content h5{font-size:16px;font-size:1rem;}h6,.entry-content h6{font-size:15px;font-size:0.9375rem;}.ast-single-post .entry-title,.page-title{font-size:30px;}.ast-header-break-point .site-branding img,.ast-header-break-point #masthead .site-logo-img .custom-logo-link img{max-width:100px;}.astra-logo-svg{width:100px;}.ast-header-break-point .site-logo-img .custom-mobile-logo-link img{max-width:100px;}}@media (max-width:768px){html{font-size:91.2%;}}@media (max-width:544px){html{font-size:100%;}}@media (min-width:769px){.ast-container{max-width:1240px;}}@font-face {font-family: "Astra";src: url( https://www.gangasagar-tourism.com/wp-content/themes/astra/assets/fonts/astra.woff) format("woff"),url( https://www.gangasagar-tourism.com/wp-content/themes/astra/assets/fonts/astra.ttf) format("truetype"),url( https://www.gangasagar-tourism.com/wp-content/themes/astra/assets/fonts/astra.svg#astra) format("svg");font-weight: normal;font-style: normal;}@media (max-width:921px) {.main-header-bar .main-header-bar-navigation{display:none;}}.ast-desktop .main-header-menu.submenu-with-border .sub-menu,.ast-desktop .main-header-menu.submenu-with-border .children,.ast-desktop .main-header-menu.submenu-with-border .astra-full-megamenu-wrapper{border-color:#fb2056;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu,.ast-desktop .main-header-menu.submenu-with-border .children{border-top-width:2px;border-right-width:0px;border-left-width:0px;border-bottom-width:0px;border-style:solid;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu,.ast-desktop .main-header-menu.submenu-with-border .children .children{top:-2px;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu a,.ast-desktop .main-header-menu.submenu-with-border .children a{border-bottom-width:0px;border-style:solid;border-color:#eaeaea;}@media (min-width:769px){.main-header-menu .sub-menu li.ast-left-align-sub-menu:hover > ul,.main-header-menu .sub-menu li.ast-left-align-sub-menu.focus > ul{margin-left:-0px;}}.ast-small-footer{border-top-style:solid;border-top-width:0;border-top-color:#7a7a7a;}.ast-small-footer-wrap{text-align:center;}@media (max-width:920px){.ast-404-layout-1 .ast-404-text{font-size:100px;font-size:6.25rem;}} .ast-header-break-point .site-header{border-bottom-width:0;}@media (min-width:769px){.main-header-bar{border-bottom-width:0;}}.main-header-menu .menu-item, .main-header-bar .ast-masthead-custom-menu-items{-js-display:flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}.main-header-menu > .menu-item > a{height:100%;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-js-display:flex;display:flex;}.ast-primary-menu-disabled .main-header-bar .ast-masthead-custom-menu-items{flex:unset;} @media (min-width:769px){.ast-theme-transparent-header #masthead{position:absolute;left:0;right:0;}.ast-theme-transparent-header .main-header-bar, .ast-theme-transparent-header.ast-header-break-point .main-header-bar{background:none;}body.elementor-editor-active.ast-theme-transparent-header #masthead, .fl-builder-edit .ast-theme-transparent-header #masthead, body.vc_editor.ast-theme-transparent-header #masthead{z-index:0;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .custom-mobile-logo-link{display:none;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo{display:inline-block;}.ast-theme-transparent-header .ast-above-header{background-image:none;background-color:transparent;}.ast-theme-transparent-header .ast-below-header{background-image:none;background-color:transparent;}}@media (min-width:769px){.ast-theme-transparent-header .site-title a, .ast-theme-transparent-header .site-title a:focus, .ast-theme-transparent-header .site-title a:hover, .ast-theme-transparent-header .site-title a:visited{color:#ffffff;}.ast-theme-transparent-header .site-header .site-description{color:#ffffff;}.ast-theme-transparent-header .main-header-menu, .ast-theme-transparent-header .main-header-menu a, .ast-theme-transparent-header .ast-masthead-custom-menu-items, .ast-theme-transparent-header .ast-masthead-custom-menu-items a,.ast-theme-transparent-header .main-header-menu li > .ast-menu-toggle, .ast-theme-transparent-header .main-header-menu li > .ast-menu-toggle{color:#ffffff;}.ast-theme-transparent-header .main-header-menu li:hover > a, .ast-theme-transparent-header .main-header-menu li:hover > .ast-menu-toggle, .ast-theme-transparent-header .main-header-menu .ast-masthead-custom-menu-items a:hover, .ast-theme-transparent-header .main-header-menu .focus > a, .ast-theme-transparent-header .main-header-menu .focus > .ast-menu-toggle, .ast-theme-transparent-header .main-header-menu .current-menu-item > a, .ast-theme-transparent-header .main-header-menu .current-menu-ancestor > a, .ast-theme-transparent-header .main-header-menu .current_page_item > a, .ast-theme-transparent-header .main-header-menu .current-menu-item > .ast-menu-toggle, .ast-theme-transparent-header .main-header-menu .current-menu-ancestor > .ast-menu-toggle, .ast-theme-transparent-header .main-header-menu .current_page_item > .ast-menu-toggle{color:#ffffff;}}@media (max-width:768px){.transparent-custom-logo{display:none;}}@media (min-width:768px){.ast-transparent-mobile-logo{display:none;}}@media (max-width:768px){.ast-transparent-mobile-logo{display:block;}}@media (min-width:768px){.ast-theme-transparent-header .main-header-bar{border-bottom-width:0;border-bottom-color:#ffffff;}} .ast-breadcrumbs .trail-browse, .ast-breadcrumbs .trail-items, .ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:"»";}.trail-items li:last-of-type::after{display:none;} .page-template-builder-fullwidth-std #content .ast-container { max-width: 100%; padding: 0; margin: 0; } HappyForms = {}; .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}
Skip to content
Main Menu
Home
About
Services
Blog
Contact
Plan With UsPlan With Us
jQuery(document).ready(function () { jQuery(".elementor-element-c50838b").prepend('<div class="eae-section-bs"><div class="eae-section-bs-inner">
'); var bgimage = ''; if ('' == 'yes') { //if(bgimage == ''){ // var bgoverlay = ''; //}else{ var bgoverlay = 'https://www.gangasagar-tourism.com/wp-content/plugins/addon-elements-for-elementor-page-builder//assets/lib/vegas/overlays/00.png'; // } } else { if ('01') { var bgoverlay = 'https://www.gangasagar-tourism.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/lib/vegas/overlays/01.png'; } else { var bgoverlay = 'https://www.gangasagar-tourism.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/lib/vegas/overlays/00.png'; } } jQuery(".elementor-element-c50838b").children('.eae-section-bs').children('.eae-section-bs-inner').vegas({ slides: [{"src":"https:\/\/www.gangasagar-tourism.com\/wp-content\/uploads\/2019\/01\/blog-6-free-img-150x150.jpg"},{"src":"https:\/\/www.gangasagar-tourism.com\/wp-content\/uploads\/2019\/01\/blog-5-free-img-150x150.jpg"},{"src":"https:\/\/www.gangasagar-tourism.com\/wp-content\/uploads\/2019\/01\/blog-3-free-img-150x150.jpg"},{"src":"https:\/\/www.gangasagar-tourism.com\/wp-content\/uploads\/2019\/01\/blog-2-free-img-150x150.jpg"},{"src":"https:\/\/www.gangasagar-tourism.com\/wp-content\/uploads\/2019\/01\/blog-1-free-img-150x150.jpg"}], transition: 'fade', animation: 'kenburns', overlay: bgoverlay, cover: true, delay: 5000, timer: true }); if ('' == 'yes') { jQuery(".elementor-element-c50838b").children('.eae-section-bs').children('.eae-section-bs-inner').children('.vegas-overlay').css('background-image', ''); } });
Make Your GangaSagar Yatra Plan Now With
GANGASAGAR TOURISM
Learn more
Welcome to
The GangaSagar-TOURISM.com
GangaSagar-TOURISM.com One Of The Best Agency For GangaSagar Tirtha Dham Ytra.We Do Kolkata to GangaSagar Complete Tour Package With GangaSagar Hotel Booking,
youtube
Popular Tour Package For Pilgrimage
Kolkata To GangaSagar One Day Tour package
EARN MORE
Kolkata to GangaSagar Complete Tour package
EARN MORE
Kolkata City With GangaSagar Complete Tour Package
EARN MORE
GangaSagar-TOURISM BOOKING SYSTEM
Query
Call / Request A Call Back
Get Package By Mail
Payment Online
Confirmation Voucher
Share your Plan
#happyforms-352 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 30px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #f92100; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Share your Plan
GangaSagar Accommodation Booking
GangaSagar Hotel Booking
Kolkata To kolkata Luxury A/C Car With Driver Cum Guide, Ap Meal Plan Dinner+Lunch+Breakfast | & Back To Kolkata With Sweet Memory Of GangaSagar Your Query
GangaSagar Tirtha Bhavan
Kolkata To kolkata Luxury A/C Car With Driver Cum Guide, Ap Meal Plan Dinner+Lunch+Breakfast | & Back To Kolkata With Sweet Memory Of GangaSagar Your Query
GangaSaga Lodge Bookin
Kolkata To kolkata Luxury A/C Car With Driver Cum Guide, Ap Meal Plan Dinner+Lunch+Breakfast | & Back To Kolkata With Sweet Memory Of GangaSagar Your Query
Kolkata City Tour Package
Package Over View:
Destination :Mayapur(Nadia)
Duration : 1N/2D
Pickup & Drop : Kolkata(Hotel/Airport/ Railway Station)
Hotel Info : Recommended
Package Cost : On Request/-
Learn More
Howrah To GangaSagar Car Rent With Expert Driver
BOOK Luxury A/C CAR
Travel in luxury & comfort with Tension free Journey to your Destination | We offer cars on rent services in the GangaSagar, Bakkhali, Sundarban, Digha, & City of Joy-Kolkata. Your Query
BOOK Luxury A/C CAR
Travel in luxury & comfort with Tension free Journey to your Destination | We offer cars on rent services in the GangaSagar, Bakkhali, Sundarban, Digha, & City of Joy-Kolkata. Your Query
BOOK Luxury A/C CAR
Travel in luxury & comfort with Tension free Journey to your Destination | We offer cars on rent services in the GangaSagar, Bakkhali, Sundarban, Digha, & City of Joy-Kolkata. Your Query
More Package For You
– GangaSagarTOURISM Team
Upcoming Events
GangaSagar Mela 2020 Yatra Package From Kolkata
Kolkata to Kolkata End To End Services With Free Guide,Luxuray Accommodation,AP Meal Plan
Learn More
Gangasagar Mela 2020 accommodation booing
You Can Book Hotel At Gangasagar,& Get Upto 10% Discount.Meal Plan AP
Learn More
MaYapur tirtha dham yatra
Package Over View:
Destination :Mayapur(Nadia)
Duration : 1N/2D
Pickup & Drop : Kolkata(Hotel/Airport/ Railway Station)
Hotel Info : Recommended
Package Cost : On Request/-
Learn More
Upcoming tours & destination
Fuerat aestu carentem habentia spectent tonitrua mutastis locavit liberioris. Sinistra possedit litora ut nabataeaque. Setucant coepyterunt perveniunt animal! Concordi aurea nabataeaque seductaque constaque cepit sublime flexi nullus.
Learn more
0
No. of Trips
0
Trip Type
0
No. of Coustomers
SEND YOUR QUERY:Not found what you are looking at? Write to us and we will get back to you soon
#happyforms-352 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 30px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #f92100; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Share your Plan
Tweet
HarinBari, GangaSagar, West Bengal, 743373 | Phone: 814-530-2135 | Email: [email protected]
Copyright © 2019 HolidaySEVA.com
<div class="opalhotel_backbone_modal_content"> <form> <header> <h2> <# if ( data.message ) { #> {{{ data.message }}} <# } #> <a href="#" class="opalhotel_button_close"><i class="fa fa-times" aria-hidden="true"> <footer class="center"> <input type="hidden" name="action" value="{{ data.action }}"> <!-- <button type="reset" class="opalhotel-button-cancel opalhotel_button_close"> --> <button type="submit" class="opalhotel-button opalhotel-button-submit">OK <div class="opalhotel_backbone_modal_overflow"> <div class="opalhotel_backbone_modal_content"> <form class=""> <header> <h2> <# if ( data.message ) { #> {{{ data.message }}} <# } #> <a href="#" class="opalhotel_button_close"><i class="fa fa-times" aria-hidden="true"> <div class="container"> <input type="number" step="any" name="price" value="{{ data.price }}"/> <footer class="center"> <input type="hidden" name="action" value="{{ data.action }}"> <button type="reset" class="opalhotel-button-cancel opalhotel_button_close">Cancel <button type="submit" class="opalhotel-button opalhotel-button-submit">Save <div class="opalhotel_backbone_modal_overflow"> <# if ( data.thumbnail ) { #> <a href="{{ data.permalink }}" class="thumb" style="background-image: url( {{{ data.thumbnail }}} )"> <# } #> <section class="content"> <h1 class="header"> <a href="{{ data.permalink }}">{{ data.title }} <# if ( data.address ) { #> <small> <i class="fa fa-map-marker" aria-hidden="true"> {{ data.address }} <# } #> <# if ( data.rooms_count ) { #> <small> <i class="fa fa-check" aria-hidden="true"> {{ data.rooms_count }} <# } #> <# var uniqueID = new Date().getTime(); #> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 34.085 41.95" enable-background="new 0 0 34.085 41.95" xml:space="preserve" width="60px" height="75px"> <g> <ellipse fill="#eaeaea" cx="17.042" cy="39.93" rx="4.841" ry="2.021"> <path fill="#fff" d="M34.085,17.042C34.085,7.63,26.455,0,17.042,0S0,7.63,0,17.042c0,7.318,4.621,13.54,11.098,15.955 l5.945,5.945l5.945-5.945C29.463,30.583,34.085,24.36,34.085,17.042z"> <g> <circle cx="17" cy="17" r="14.5" fill="#fff"> <g> <clipPath id="{{ uniqueID }}"> <circle class="" cx="17" cy="17" r="15" fill="#fff"> <# if ( data.thumbnail ) { #> <image clip-path="url(#{{ uniqueID }})" xlink:href="{{ data.thumbnail }}" x="0" y="0" width="65px" height="35px"> <# } #> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="40px" height="40px" viewBox="0 0 40 40"> <g> <path fill="#010" d="M48.416,39.763c0,4.784-3.863,8.647-8.627,8.647c-4.782,0-8.647-3.863-8.647-8.647 c0-4.771,3.865-8.627,8.647-8.627C44.553,31.136,48.416,34.992,48.416,39.763z M43.496,79.531V66.088l3.998-0.01l-7.716-13.35 l-7.72,13.359h3.992v13.442H43.496z M0,43.481h13.463v4.008l13.362-7.715l-13.367-7.726l0.005,3.998H0.005L0,43.481z M79.536,36.045H66.089v-3.987l-13.365,7.715l13.365,7.706v-3.988l13.447-0.01V36.045z M36.056,0.005v13.442l-3.998,0.011 l7.72,13.362l7.716-13.362h-3.998V0.005H36.056z"/> <ul> <li data-country="Afghanistan" data-lat="33" data-lng="65" data-alpha_3_code="AFG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/af.svg" alt="af" /> <span>Afghanistan <li data-country="Albania" data-lat="41" data-lng="20" data-alpha_3_code="ALB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/al.svg" alt="al" /> <span>Albania <li data-country="Algeria" data-lat="28" data-lng="3" data-alpha_3_code="DZA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/dz.svg" alt="dz" /> <span>Algeria <li data-country="American Samoa" data-lat="-14.3333" data-lng="-170" data-alpha_3_code="ASM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/as.svg" alt="as" /> <span>American Samoa <li data-country="Andorra" data-lat="42.5" data-lng="1.6" data-alpha_3_code="AND"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ad.svg" alt="ad" /> <span>Andorra <li data-country="Angola" data-lat="-12.5" data-lng="18.5" data-alpha_3_code="AGO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ao.svg" alt="ao" /> <span>Angola <li data-country="Anguilla" data-lat="18.25" data-lng="-63.1667" data-alpha_3_code="AIA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ai.svg" alt="ai" /> <span>Anguilla <li data-country="Antarctica" data-lat="-90" data-lng="0" data-alpha_3_code="ATA"> <li data-country="Antigua and Barbuda" data-lat="17.05" data-lng="-61.8" data-alpha_3_code="ATG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ag.svg" alt="ag" /> <span>Antigua and Barbuda <li data-country="Argentina" data-lat="-34" data-lng="-64" data-alpha_3_code="ARG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ar.svg" alt="ar" /> <span>Argentina <li data-country="Armenia" data-lat="40" data-lng="45" data-alpha_3_code="ARM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/am.svg" alt="am" /> <span>Armenia <li data-country="Aruba" data-lat="12.5" data-lng="-69.9667" data-alpha_3_code="ABW"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/aw.svg" alt="aw" /> <span>Aruba <li data-country="Australia" data-lat="-27" data-lng="133" data-alpha_3_code="AUS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/au.svg" alt="au" /> <span>Australia <li data-country="Austria" data-lat="47.3333" data-lng="13.3333" data-alpha_3_code="AUT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/at.svg" alt="at" /> <span>Austria <li data-country="Azerbaijan" data-lat="40.5" data-lng="47.5" data-alpha_3_code="AZE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/az.svg" alt="az" /> <span>Azerbaijan <li data-country="Bahamas" data-lat="24.25" data-lng="-76" data-alpha_3_code="BHS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bs.svg" alt="bs" /> <span>Bahamas <li data-country="Bahrain" data-lat="26" data-lng="50.55" data-alpha_3_code="BHR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bh.svg" alt="bh" /> <span>Bahrain <li data-country="Bangladesh" data-lat="24" data-lng="90" data-alpha_3_code="BGD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bd.svg" alt="bd" /> <span>Bangladesh <li data-country="Barbados" data-lat="13.1667" data-lng="-59.5333" data-alpha_3_code="BRB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bb.svg" alt="bb" /> <span>Barbados <li data-country="Belarus" data-lat="53" data-lng="28" data-alpha_3_code="BLR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/by.svg" alt="by" /> <span>Belarus <li data-country="Belgium" data-lat="50.8333" data-lng="4" data-alpha_3_code="BEL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/be.svg" alt="be" /> <span>Belgium <li data-country="Belize" data-lat="17.25" data-lng="-88.75" data-alpha_3_code="BLZ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bz.svg" alt="bz" /> <span>Belize <li data-country="Benin" data-lat="9.5" data-lng="2.25" data-alpha_3_code="BEN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bj.svg" alt="bj" /> <span>Benin <li data-country="Bermuda" data-lat="32.3333" data-lng="-64.75" data-alpha_3_code="BMU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bm.svg" alt="bm" /> <span>Bermuda <li data-country="Bhutan" data-lat="27.5" data-lng="90.5" data-alpha_3_code="BTN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bt.svg" alt="bt" /> <span>Bhutan <li data-country="Bolivia, Plurinational State of" data-lat="-17" data-lng="-65" data-alpha_3_code="BOL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bo.svg" alt="bo" /> <span>Bolivia, Plurinational State of <li data-country="Bosnia and Herzegovina" data-lat="44" data-lng="18" data-alpha_3_code="BIH"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ba.svg" alt="ba" /> <span>Bosnia and Herzegovina <li data-country="Botswana" data-lat="-22" data-lng="24" data-alpha_3_code="BWA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bw.svg" alt="bw" /> <span>Botswana <li data-country="Bouvet Island" data-lat="-54.4333" data-lng="3.4" data-alpha_3_code="BVT"> <li data-country="Brazil" data-lat="-10" data-lng="-55" data-alpha_3_code="BRA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/br.svg" alt="br" /> <span>Brazil <li data-country="British Indian Ocean Territory" data-lat="-6" data-lng="71.5" data-alpha_3_code="IOT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/io.svg" alt="io" /> <span>British Indian Ocean Territory <li data-country="Brunei Darussalam" data-lat="4.5" data-lng="114.6667" data-alpha_3_code="BRN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bn.svg" alt="bn" /> <span>Brunei Darussalam <li data-country="Bulgaria" data-lat="43" data-lng="25" data-alpha_3_code="BGR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bg.svg" alt="bg" /> <span>Bulgaria <li data-country="Burkina Faso" data-lat="13" data-lng="-2" data-alpha_3_code="BFA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bf.svg" alt="bf" /> <span>Burkina Faso <li data-country="Burundi" data-lat="-3.5" data-lng="30" data-alpha_3_code="BDI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/bi.svg" alt="bi" /> <span>Burundi <li data-country="Cambodia" data-lat="13" data-lng="105" data-alpha_3_code="KHM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kh.svg" alt="kh" /> <span>Cambodia <li data-country="Cameroon" data-lat="6" data-lng="12" data-alpha_3_code="CMR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cm.svg" alt="cm" /> <span>Cameroon <li data-country="Canada" data-lat="60" data-lng="-95" data-alpha_3_code="CAN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ca.svg" alt="ca" /> <span>Canada <li data-country="Cape Verde" data-lat="16" data-lng="-24" data-alpha_3_code="CPV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cv.svg" alt="cv" /> <span>Cape Verde <li data-country="Cayman Islands" data-lat="19.5" data-lng="-80.5" data-alpha_3_code="CYM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ky.svg" alt="ky" /> <span>Cayman Islands <li data-country="Central African Republic" data-lat="7" data-lng="21" data-alpha_3_code="CAF"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cf.svg" alt="cf" /> <span>Central African Republic <li data-country="Chad" data-lat="15" data-lng="19" data-alpha_3_code="TCD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/td.svg" alt="td" /> <span>Chad <li data-country="Chile" data-lat="-30" data-lng="-71" data-alpha_3_code="CHL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cl.svg" alt="cl" /> <span>Chile <li data-country="China" data-lat="35" data-lng="105" data-alpha_3_code="CHN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cn.svg" alt="cn" /> <span>China <li data-country="Christmas Island" data-lat="-10.5" data-lng="105.6667" data-alpha_3_code="CXR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cx.svg" alt="cx" /> <span>Christmas Island <li data-country="Cocos (Keeling) Islands" data-lat="-12.5" data-lng="96.8333" data-alpha_3_code="CCK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cc.svg" alt="cc" /> <span>Cocos (Keeling) Islands <li data-country="Colombia" data-lat="4" data-lng="-72" data-alpha_3_code="COL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/co.svg" alt="co" /> <span>Colombia <li data-country="Comoros" data-lat="-12.1667" data-lng="44.25" data-alpha_3_code="COM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/km.svg" alt="km" /> <span>Comoros <li data-country="Congo" data-lat="-1" data-lng="15" data-alpha_3_code="COG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cg.svg" alt="cg" /> <span>Congo <li data-country="Congo, the Democratic Republic of the" data-lat="0" data-lng="25" data-alpha_3_code="COD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cd.svg" alt="cd" /> <span>Congo, the Democratic Republic of the <li data-country="Cook Islands" data-lat="-21.2333" data-lng="-159.7667" data-alpha_3_code="COK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ck.svg" alt="ck" /> <span>Cook Islands <li data-country="Costa Rica" data-lat="10" data-lng="-84" data-alpha_3_code="CRI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cr.svg" alt="cr" /> <span>Costa Rica <li data-country="Côte d&#039;Ivoire" data-lat="8" data-lng="-5" data-alpha_3_code="CIV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ci.svg" alt="ci" /> <span>Côte d&#039;Ivoire <li data-country="Croatia" data-lat="45.1667" data-lng="15.5" data-alpha_3_code="HRV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/hr.svg" alt="hr" /> <span>Croatia <li data-country="Cuba" data-lat="21.5" data-lng="-80" data-alpha_3_code="CUB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cu.svg" alt="cu" /> <span>Cuba <li data-country="Cyprus" data-lat="35" data-lng="33" data-alpha_3_code="CYP"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cy.svg" alt="cy" /> <span>Cyprus <li data-country="Czech Republic" data-lat="49.75" data-lng="15.5" data-alpha_3_code="CZE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/cz.svg" alt="cz" /> <span>Czech Republic <li data-country="Denmark" data-lat="56" data-lng="10" data-alpha_3_code="DNK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/dk.svg" alt="dk" /> <span>Denmark <li data-country="Djibouti" data-lat="11.5" data-lng="43" data-alpha_3_code="DJI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/dj.svg" alt="dj" /> <span>Djibouti <li data-country="Dominica" data-lat="15.4167" data-lng="-61.3333" data-alpha_3_code="DMA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/dm.svg" alt="dm" /> <span>Dominica <li data-country="Dominican Republic" data-lat="19" data-lng="-70.6667" data-alpha_3_code="DOM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/do.svg" alt="do" /> <span>Dominican Republic <li data-country="Ecuador" data-lat="-2" data-lng="-77.5" data-alpha_3_code="ECU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ec.svg" alt="ec" /> <span>Ecuador <li data-country="Egypt" data-lat="27" data-lng="30" data-alpha_3_code="EGY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/eg.svg" alt="eg" /> <span>Egypt <li data-country="El Salvador" data-lat="13.8333" data-lng="-88.9167" data-alpha_3_code="SLV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sv.svg" alt="sv" /> <span>El Salvador <li data-country="Equatorial Guinea" data-lat="2" data-lng="10" data-alpha_3_code="GNQ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gq.svg" alt="gq" /> <span>Equatorial Guinea <li data-country="Eritrea" data-lat="15" data-lng="39" data-alpha_3_code="ERI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/er.svg" alt="er" /> <span>Eritrea <li data-country="Estonia" data-lat="59" data-lng="26" data-alpha_3_code="EST"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ee.svg" alt="ee" /> <span>Estonia <li data-country="Ethiopia" data-lat="8" data-lng="38" data-alpha_3_code="ETH"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/et.svg" alt="et" /> <span>Ethiopia <li data-country="Falkland Islands (Malvinas)" data-lat="-51.75" data-lng="-59" data-alpha_3_code="FLK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fk.svg" alt="fk" /> <span>Falkland Islands (Malvinas) <li data-country="Faroe Islands" data-lat="62" data-lng="-7" data-alpha_3_code="FRO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fo.svg" alt="fo" /> <span>Faroe Islands <li data-country="Fiji" data-lat="-18" data-lng="175" data-alpha_3_code="FJI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fj.svg" alt="fj" /> <span>Fiji <li data-country="Finland" data-lat="64" data-lng="26" data-alpha_3_code="FIN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fi.svg" alt="fi" /> <span>Finland <li data-country="France" data-lat="46" data-lng="2" data-alpha_3_code="FRA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fr.svg" alt="fr" /> <span>France <li data-country="French Guiana" data-lat="4" data-lng="-53" data-alpha_3_code="GUF"> <li data-country="French Polynesia" data-lat="-15" data-lng="-140" data-alpha_3_code="PYF"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pf.svg" alt="pf" /> <span>French Polynesia <li data-country="French Southern Territories" data-lat="-43" data-lng="67" data-alpha_3_code="ATF"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tf.svg" alt="tf" /> <span>French Southern Territories <li data-country="Gabon" data-lat="-1" data-lng="11.75" data-alpha_3_code="GAB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ga.svg" alt="ga" /> <span>Gabon <li data-country="Gambia" data-lat="13.4667" data-lng="-16.5667" data-alpha_3_code="GMB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gm.svg" alt="gm" /> <span>Gambia <li data-country="Georgia" data-lat="42" data-lng="43.5" data-alpha_3_code="GEO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ge.svg" alt="ge" /> <span>Georgia <li data-country="Germany" data-lat="51" data-lng="9" data-alpha_3_code="DEU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/de.svg" alt="de" /> <span>Germany <li data-country="Ghana" data-lat="8" data-lng="-2" data-alpha_3_code="GHA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gh.svg" alt="gh" /> <span>Ghana <li data-country="Gibraltar" data-lat="36.1833" data-lng="-5.3667" data-alpha_3_code="GIB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gi.svg" alt="gi" /> <span>Gibraltar <li data-country="Greece" data-lat="39" data-lng="22" data-alpha_3_code="GRC"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gr.svg" alt="gr" /> <span>Greece <li data-country="Greenland" data-lat="72" data-lng="-40" data-alpha_3_code="GRL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gl.svg" alt="gl" /> <span>Greenland <li data-country="Grenada" data-lat="12.1167" data-lng="-61.6667" data-alpha_3_code="GRD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gd.svg" alt="gd" /> <span>Grenada <li data-country="Guadeloupe" data-lat="16.25" data-lng="-61.5833" data-alpha_3_code="GLP"> <li data-country="Guam" data-lat="13.4667" data-lng="144.7833" data-alpha_3_code="GUM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gu.svg" alt="gu" /> <span>Guam <li data-country="Guatemala" data-lat="15.5" data-lng="-90.25" data-alpha_3_code="GTM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gt.svg" alt="gt" /> <span>Guatemala <li data-country="Guernsey" data-lat="49.5" data-lng="-2.56" data-alpha_3_code="GGY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gg.svg" alt="gg" /> <span>Guernsey <li data-country="Guinea" data-lat="11" data-lng="-10" data-alpha_3_code="GIN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gn.svg" alt="gn" /> <span>Guinea <li data-country="Guinea-Bissau" data-lat="12" data-lng="-15" data-alpha_3_code="GNB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gw.svg" alt="gw" /> <span>Guinea-Bissau <li data-country="Guyana" data-lat="5" data-lng="-59" data-alpha_3_code="GUY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gy.svg" alt="gy" /> <span>Guyana <li data-country="Haiti" data-lat="19" data-lng="-72.4167" data-alpha_3_code="HTI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ht.svg" alt="ht" /> <span>Haiti <li data-country="Heard Island and McDonald Islands" data-lat="-53.1" data-lng="72.5167" data-alpha_3_code="HMD"> <li data-country="Holy See (Vatican City State)" data-lat="41.9" data-lng="12.45" data-alpha_3_code="VAT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/va.svg" alt="va" /> <span>Holy See (Vatican City State) <li data-country="Honduras" data-lat="15" data-lng="-86.5" data-alpha_3_code="HND"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/hn.svg" alt="hn" /> <span>Honduras <li data-country="Hong Kong" data-lat="22.25" data-lng="114.1667" data-alpha_3_code="HKG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/hk.svg" alt="hk" /> <span>Hong Kong <li data-country="Hungary" data-lat="47" data-lng="20" data-alpha_3_code="HUN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/hu.svg" alt="hu" /> <span>Hungary <li data-country="Iceland" data-lat="65" data-lng="-18" data-alpha_3_code="ISL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/is.svg" alt="is" /> <span>Iceland <li data-country="India" data-lat="20" data-lng="77" data-alpha_3_code="IND"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/in.svg" alt="in" /> <span>India <li data-country="Indonesia" data-lat="-5" data-lng="120" data-alpha_3_code="IDN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/id.svg" alt="id" /> <span>Indonesia <li data-country="Iran, Islamic Republic of" data-lat="32" data-lng="53" data-alpha_3_code="IRN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ir.svg" alt="ir" /> <span>Iran, Islamic Republic of <li data-country="Iraq" data-lat="33" data-lng="44" data-alpha_3_code="IRQ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/iq.svg" alt="iq" /> <span>Iraq <li data-country="Ireland" data-lat="53" data-lng="-8" data-alpha_3_code="IRL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ie.svg" alt="ie" /> <span>Ireland <li data-country="Isle of Man" data-lat="54.23" data-lng="-4.55" data-alpha_3_code="IMN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/im.svg" alt="im" /> <span>Isle of Man <li data-country="Israel" data-lat="31.5" data-lng="34.75" data-alpha_3_code="ISR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/il.svg" alt="il" /> <span>Israel <li data-country="Italy" data-lat="42.8333" data-lng="12.8333" data-alpha_3_code="ITA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/it.svg" alt="it" /> <span>Italy <li data-country="Jamaica" data-lat="18.25" data-lng="-77.5" data-alpha_3_code="JAM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/jm.svg" alt="jm" /> <span>Jamaica <li data-country="Japan" data-lat="36" data-lng="138" data-alpha_3_code="JPN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/jp.svg" alt="jp" /> <span>Japan <li data-country="Jersey" data-lat="49.21" data-lng="-2.13" data-alpha_3_code="JEY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/je.svg" alt="je" /> <span>Jersey <li data-country="Jordan" data-lat="31" data-lng="36" data-alpha_3_code="JOR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/jo.svg" alt="jo" /> <span>Jordan <li data-country="Kazakhstan" data-lat="48" data-lng="68" data-alpha_3_code="KAZ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kz.svg" alt="kz" /> <span>Kazakhstan <li data-country="Kenya" data-lat="1" data-lng="38" data-alpha_3_code="KEN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ke.svg" alt="ke" /> <span>Kenya <li data-country="Kiribati" data-lat="1.4167" data-lng="173" data-alpha_3_code="KIR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ki.svg" alt="ki" /> <span>Kiribati <li data-country="Korea, Democratic People&#039;s Republic of" data-lat="40" data-lng="127" data-alpha_3_code="PRK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kp.svg" alt="kp" /> <span>Korea, Democratic People&#039;s Republic of <li data-country="Korea, Republic of" data-lat="37" data-lng="127.5" data-alpha_3_code="KOR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kr.svg" alt="kr" /> <span>Korea, Republic of <li data-country="Kuwait" data-lat="29.3375" data-lng="47.6581" data-alpha_3_code="KWT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kw.svg" alt="kw" /> <span>Kuwait <li data-country="Kyrgyzstan" data-lat="41" data-lng="75" data-alpha_3_code="KGZ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kg.svg" alt="kg" /> <span>Kyrgyzstan <li data-country="Lao People&#039;s Democratic Republic" data-lat="18" data-lng="105" data-alpha_3_code="LAO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/la.svg" alt="la" /> <span>Lao People&#039;s Democratic Republic <li data-country="Latvia" data-lat="57" data-lng="25" data-alpha_3_code="LVA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lv.svg" alt="lv" /> <span>Latvia <li data-country="Lebanon" data-lat="33.8333" data-lng="35.8333" data-alpha_3_code="LBN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lb.svg" alt="lb" /> <span>Lebanon <li data-country="Lesotho" data-lat="-29.5" data-lng="28.5" data-alpha_3_code="LSO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ls.svg" alt="ls" /> <span>Lesotho <li data-country="Liberia" data-lat="6.5" data-lng="-9.5" data-alpha_3_code="LBR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lr.svg" alt="lr" /> <span>Liberia <li data-country="Libyan Arab Jamahiriya" data-lat="25" data-lng="17" data-alpha_3_code="LBY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ly.svg" alt="ly" /> <span>Libyan Arab Jamahiriya <li data-country="Liechtenstein" data-lat="47.1667" data-lng="9.5333" data-alpha_3_code="LIE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/li.svg" alt="li" /> <span>Liechtenstein <li data-country="Lithuania" data-lat="56" data-lng="24" data-alpha_3_code="LTU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lt.svg" alt="lt" /> <span>Lithuania <li data-country="Luxembourg" data-lat="49.75" data-lng="6.1667" data-alpha_3_code="LUX"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lu.svg" alt="lu" /> <span>Luxembourg <li data-country="Macao" data-lat="22.1667" data-lng="113.55" data-alpha_3_code="MAC"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mo.svg" alt="mo" /> <span>Macao <li data-country="Macedonia, the former Yugoslav Republic of" data-lat="41.8333" data-lng="22" data-alpha_3_code="MKD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mk.svg" alt="mk" /> <span>Macedonia, the former Yugoslav Republic of <li data-country="Madagascar" data-lat="-20" data-lng="47" data-alpha_3_code="MDG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mg.svg" alt="mg" /> <span>Madagascar <li data-country="Malawi" data-lat="-13.5" data-lng="34" data-alpha_3_code="MWI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mw.svg" alt="mw" /> <span>Malawi <li data-country="Malaysia" data-lat="2.5" data-lng="112.5" data-alpha_3_code="MYS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/my.svg" alt="my" /> <span>Malaysia <li data-country="Maldives" data-lat="3.25" data-lng="73" data-alpha_3_code="MDV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mv.svg" alt="mv" /> <span>Maldives <li data-country="Mali" data-lat="17" data-lng="-4" data-alpha_3_code="MLI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ml.svg" alt="ml" /> <span>Mali <li data-country="Malta" data-lat="35.8333" data-lng="14.5833" data-alpha_3_code="MLT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mt.svg" alt="mt" /> <span>Malta <li data-country="Marshall Islands" data-lat="9" data-lng="168" data-alpha_3_code="MHL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mh.svg" alt="mh" /> <span>Marshall Islands <li data-country="Martinique" data-lat="14.6667" data-lng="-61" data-alpha_3_code="MTQ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mq.svg" alt="mq" /> <span>Martinique <li data-country="Mauritania" data-lat="20" data-lng="-12" data-alpha_3_code="MRT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mr.svg" alt="mr" /> <span>Mauritania <li data-country="Mauritius" data-lat="-20.2833" data-lng="57.55" data-alpha_3_code="MUS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mu.svg" alt="mu" /> <span>Mauritius <li data-country="Mayotte" data-lat="-12.8333" data-lng="45.1667" data-alpha_3_code="MYT"> <li data-country="Mexico" data-lat="23" data-lng="-102" data-alpha_3_code="MEX"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mx.svg" alt="mx" /> <span>Mexico <li data-country="Micronesia, Federated States of" data-lat="6.9167" data-lng="158.25" data-alpha_3_code="FSM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/fm.svg" alt="fm" /> <span>Micronesia, Federated States of <li data-country="Moldova, Republic of" data-lat="47" data-lng="29" data-alpha_3_code="MDA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/md.svg" alt="md" /> <span>Moldova, Republic of <li data-country="Monaco" data-lat="43.7333" data-lng="7.4" data-alpha_3_code="MCO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mc.svg" alt="mc" /> <span>Monaco <li data-country="Mongolia" data-lat="46" data-lng="105" data-alpha_3_code="MNG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mn.svg" alt="mn" /> <span>Mongolia <li data-country="Montenegro" data-lat="42" data-lng="19" data-alpha_3_code="MNE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/me.svg" alt="me" /> <span>Montenegro <li data-country="Montserrat" data-lat="16.75" data-lng="-62.2" data-alpha_3_code="MSR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ms.svg" alt="ms" /> <span>Montserrat <li data-country="Morocco" data-lat="32" data-lng="-5" data-alpha_3_code="MAR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ma.svg" alt="ma" /> <span>Morocco <li data-country="Mozambique" data-lat="-18.25" data-lng="35" data-alpha_3_code="MOZ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mz.svg" alt="mz" /> <span>Mozambique <li data-country="Myanmar" data-lat="22" data-lng="98" data-alpha_3_code="MMR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mm.svg" alt="mm" /> <span>Myanmar <li data-country="Namibia" data-lat="-22" data-lng="17" data-alpha_3_code="NAM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/na.svg" alt="na" /> <span>Namibia <li data-country="Nauru" data-lat="-0.5333" data-lng="166.9167" data-alpha_3_code="NRU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nr.svg" alt="nr" /> <span>Nauru <li data-country="Nepal" data-lat="28" data-lng="84" data-alpha_3_code="NPL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/np.svg" alt="np" /> <span>Nepal <li data-country="Netherlands" data-lat="52.5" data-lng="5.75" data-alpha_3_code="NLD"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nl.svg" alt="nl" /> <span>Netherlands <li data-country="Netherlands Antilles" data-lat="12.25" data-lng="-68.75" data-alpha_3_code="ANT"> <li data-country="New Caledonia" data-lat="-21.5" data-lng="165.5" data-alpha_3_code="NCL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nc.svg" alt="nc" /> <span>New Caledonia <li data-country="New Zealand" data-lat="-41" data-lng="174" data-alpha_3_code="NZL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nz.svg" alt="nz" /> <span>New Zealand <li data-country="Nicaragua" data-lat="13" data-lng="-85" data-alpha_3_code="NIC"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ni.svg" alt="ni" /> <span>Nicaragua <li data-country="Niger" data-lat="16" data-lng="8" data-alpha_3_code="NER"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ne.svg" alt="ne" /> <span>Niger <li data-country="Nigeria" data-lat="10" data-lng="8" data-alpha_3_code="NGA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ng.svg" alt="ng" /> <span>Nigeria <li data-country="Niue" data-lat="-19.0333" data-lng="-169.8667" data-alpha_3_code="NIU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nu.svg" alt="nu" /> <span>Niue <li data-country="Norfolk Island" data-lat="-29.0333" data-lng="167.95" data-alpha_3_code="NFK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/nf.svg" alt="nf" /> <span>Norfolk Island <li data-country="Northern Mariana Islands" data-lat="15.2" data-lng="145.75" data-alpha_3_code="MNP"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/mp.svg" alt="mp" /> <span>Northern Mariana Islands <li data-country="Norway" data-lat="62" data-lng="10" data-alpha_3_code="NOR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/no.svg" alt="no" /> <span>Norway <li data-country="Oman" data-lat="21" data-lng="57" data-alpha_3_code="OMN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/om.svg" alt="om" /> <span>Oman <li data-country="Pakistan" data-lat="30" data-lng="70" data-alpha_3_code="PAK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pk.svg" alt="pk" /> <span>Pakistan <li data-country="Palau" data-lat="7.5" data-lng="134.5" data-alpha_3_code="PLW"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pw.svg" alt="pw" /> <span>Palau <li data-country="Palestinian Territory, Occupied" data-lat="32" data-lng="35.25" data-alpha_3_code="PSE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ps.svg" alt="ps" /> <span>Palestinian Territory, Occupied <li data-country="Panama" data-lat="9" data-lng="-80" data-alpha_3_code="PAN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pa.svg" alt="pa" /> <span>Panama <li data-country="Papua New Guinea" data-lat="-6" data-lng="147" data-alpha_3_code="PNG"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pg.svg" alt="pg" /> <span>Papua New Guinea <li data-country="Paraguay" data-lat="-23" data-lng="-58" data-alpha_3_code="PRY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/py.svg" alt="py" /> <span>Paraguay <li data-country="Peru" data-lat="-10" data-lng="-76" data-alpha_3_code="PER"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pe.svg" alt="pe" /> <span>Peru <li data-country="Philippines" data-lat="13" data-lng="122" data-alpha_3_code="PHL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ph.svg" alt="ph" /> <span>Philippines <li data-country="Pitcairn" data-lat="-24.7" data-lng="-127.4" data-alpha_3_code="PCN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pn.svg" alt="pn" /> <span>Pitcairn <li data-country="Poland" data-lat="52" data-lng="20" data-alpha_3_code="POL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pl.svg" alt="pl" /> <span>Poland <li data-country="Portugal" data-lat="39.5" data-lng="-8" data-alpha_3_code="PRT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pt.svg" alt="pt" /> <span>Portugal <li data-country="Puerto Rico" data-lat="18.25" data-lng="-66.5" data-alpha_3_code="PRI"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/pr.svg" alt="pr" /> <span>Puerto Rico <li data-country="Qatar" data-lat="25.5" data-lng="51.25" data-alpha_3_code="QAT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/qa.svg" alt="qa" /> <span>Qatar <li data-country="Réunion" data-lat="-21.1" data-lng="55.6" data-alpha_3_code="REU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/re.svg" alt="re" /> <span>Réunion <li data-country="Romania" data-lat="46" data-lng="25" data-alpha_3_code="ROU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ro.svg" alt="ro" /> <span>Romania <li data-country="Russian Federation" data-lat="60" data-lng="100" data-alpha_3_code="RUS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ru.svg" alt="ru" /> <span>Russian Federation <li data-country="Rwanda" data-lat="-2" data-lng="30" data-alpha_3_code="RWA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/rw.svg" alt="rw" /> <span>Rwanda <li data-country="Saint Helena, Ascension and Tristan da Cunha" data-lat="-15.9333" data-lng="-5.7" data-alpha_3_code="SHN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sh.svg" alt="sh" /> <span>Saint Helena, Ascension and Tristan da Cunha <li data-country="Saint Kitts and Nevis" data-lat="17.3333" data-lng="-62.75" data-alpha_3_code="KNA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/kn.svg" alt="kn" /> <span>Saint Kitts and Nevis <li data-country="Saint Lucia" data-lat="13.8833" data-lng="-61.1333" data-alpha_3_code="LCA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lc.svg" alt="lc" /> <span>Saint Lucia <li data-country="Saint Pierre and Miquelon" data-lat="46.8333" data-lng="-56.3333" data-alpha_3_code="SPM"> <li data-country="Saint Vincent and the Grenadines" data-lat="13.25" data-lng="-61.2" data-alpha_3_code="VCT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/vc.svg" alt="vc" /> <span>Saint Vincent and the Grenadines <li data-country="Samoa" data-lat="-13.5833" data-lng="-172.3333" data-alpha_3_code="WSM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ws.svg" alt="ws" /> <span>Samoa <li data-country="San Marino" data-lat="43.7667" data-lng="12.4167" data-alpha_3_code="SMR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sm.svg" alt="sm" /> <span>San Marino <li data-country="Sao Tome and Principe" data-lat="1" data-lng="7" data-alpha_3_code="STP"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/st.svg" alt="st" /> <span>Sao Tome and Principe <li data-country="Saudi Arabia" data-lat="25" data-lng="45" data-alpha_3_code="SAU"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sa.svg" alt="sa" /> <span>Saudi Arabia <li data-country="Senegal" data-lat="14" data-lng="-14" data-alpha_3_code="SEN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sn.svg" alt="sn" /> <span>Senegal <li data-country="Serbia" data-lat="44" data-lng="21" data-alpha_3_code="SRB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/rs.svg" alt="rs" /> <span>Serbia <li data-country="Seychelles" data-lat="-4.5833" data-lng="55.6667" data-alpha_3_code="SYC"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sc.svg" alt="sc" /> <span>Seychelles <li data-country="Sierra Leone" data-lat="8.5" data-lng="-11.5" data-alpha_3_code="SLE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sl.svg" alt="sl" /> <span>Sierra Leone <li data-country="Singapore" data-lat="1.3667" data-lng="103.8" data-alpha_3_code="SGP"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sg.svg" alt="sg" /> <span>Singapore <li data-country="Slovakia" data-lat="48.6667" data-lng="19.5" data-alpha_3_code="SVK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sk.svg" alt="sk" /> <span>Slovakia <li data-country="Slovenia" data-lat="46" data-lng="15" data-alpha_3_code="SVN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/si.svg" alt="si" /> <span>Slovenia <li data-country="Solomon Islands" data-lat="-8" data-lng="159" data-alpha_3_code="SLB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sb.svg" alt="sb" /> <span>Solomon Islands <li data-country="Somalia" data-lat="10" data-lng="49" data-alpha_3_code="SOM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/so.svg" alt="so" /> <span>Somalia <li data-country="South Africa" data-lat="-29" data-lng="24" data-alpha_3_code="ZAF"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/za.svg" alt="za" /> <span>South Africa <li data-country="South Georgia and the South Sandwich Islands" data-lat="-54.5" data-lng="-37" data-alpha_3_code="SGS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gs.svg" alt="gs" /> <span>South Georgia and the South Sandwich Islands <li data-country="Spain" data-lat="40" data-lng="-4" data-alpha_3_code="ESP"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/es.svg" alt="es" /> <span>Spain <li data-country="Sri Lanka" data-lat="7" data-lng="81" data-alpha_3_code="LKA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/lk.svg" alt="lk" /> <span>Sri Lanka <li data-country="Sudan" data-lat="15" data-lng="30" data-alpha_3_code="SDN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sd.svg" alt="sd" /> <span>Sudan <li data-country="Suriname" data-lat="4" data-lng="-56" data-alpha_3_code="SUR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sr.svg" alt="sr" /> <span>Suriname <li data-country="Svalbard and Jan Mayen" data-lat="78" data-lng="20" data-alpha_3_code="SJM"> <li data-country="Swaziland" data-lat="-26.5" data-lng="31.5" data-alpha_3_code="SWZ"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sz.svg" alt="sz" /> <span>Swaziland <li data-country="Sweden" data-lat="62" data-lng="15" data-alpha_3_code="SWE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/se.svg" alt="se" /> <span>Sweden <li data-country="Switzerland" data-lat="47" data-lng="8" data-alpha_3_code="CHE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ch.svg" alt="ch" /> <span>Switzerland <li data-country="Syrian Arab Republic" data-lat="35" data-lng="38" data-alpha_3_code="SYR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/sy.svg" alt="sy" /> <span>Syrian Arab Republic <li data-country="Taiwan, Province of China" data-lat="23.5" data-lng="121" data-alpha_3_code="TWN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tw.svg" alt="tw" /> <span>Taiwan, Province of China <li data-country="Tajikistan" data-lat="39" data-lng="71" data-alpha_3_code="TJK"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tj.svg" alt="tj" /> <span>Tajikistan <li data-country="Tanzania, United Republic of" data-lat="-6" data-lng="35" data-alpha_3_code="TZA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tz.svg" alt="tz" /> <span>Tanzania, United Republic of <li data-country="Thailand" data-lat="15" data-lng="100" data-alpha_3_code="THA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/th.svg" alt="th" /> <span>Thailand <li data-country="Timor-Leste" data-lat="-8.55" data-lng="125.5167" data-alpha_3_code="TLS"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tl.svg" alt="tl" /> <span>Timor-Leste <li data-country="Togo" data-lat="8" data-lng="1.1667" data-alpha_3_code="TGO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tg.svg" alt="tg" /> <span>Togo <li data-country="Tokelau" data-lat="-9" data-lng="-172" data-alpha_3_code="TKL"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tk.svg" alt="tk" /> <span>Tokelau <li data-country="Tonga" data-lat="-20" data-lng="-175" data-alpha_3_code="TON"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/to.svg" alt="to" /> <span>Tonga <li data-country="Trinidad and Tobago" data-lat="11" data-lng="-61" data-alpha_3_code="TTO"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tt.svg" alt="tt" /> <span>Trinidad and Tobago <li data-country="Tunisia" data-lat="34" data-lng="9" data-alpha_3_code="TUN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tn.svg" alt="tn" /> <span>Tunisia <li data-country="Turkey" data-lat="39" data-lng="35" data-alpha_3_code="TUR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tr.svg" alt="tr" /> <span>Turkey <li data-country="Turkmenistan" data-lat="40" data-lng="60" data-alpha_3_code="TKM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tm.svg" alt="tm" /> <span>Turkmenistan <li data-country="Turks and Caicos Islands" data-lat="21.75" data-lng="-71.5833" data-alpha_3_code="TCA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tc.svg" alt="tc" /> <span>Turks and Caicos Islands <li data-country="Tuvalu" data-lat="-8" data-lng="178" data-alpha_3_code="TUV"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/tv.svg" alt="tv" /> <span>Tuvalu <li data-country="Uganda" data-lat="1" data-lng="32" data-alpha_3_code="UGA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ug.svg" alt="ug" /> <span>Uganda <li data-country="Ukraine" data-lat="49" data-lng="32" data-alpha_3_code="UKR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ua.svg" alt="ua" /> <span>Ukraine <li data-country="United Arab Emirates" data-lat="24" data-lng="54" data-alpha_3_code="ARE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ae.svg" alt="ae" /> <span>United Arab Emirates <li data-country="United Kingdom" data-lat="54" data-lng="-2" data-alpha_3_code="GBR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/gb.svg" alt="gb" /> <span>United Kingdom <li data-country="United States" data-lat="38" data-lng="-97" data-alpha_3_code="USA"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/us.svg" alt="us" /> <span>United States <li data-country="United States Minor Outlying Islands" data-lat="19.2833" data-lng="166.6" data-alpha_3_code="UMI"> <li data-country="Uruguay" data-lat="-33" data-lng="-56" data-alpha_3_code="URY"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/uy.svg" alt="uy" /> <span>Uruguay <li data-country="Uzbekistan" data-lat="41" data-lng="64" data-alpha_3_code="UZB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/uz.svg" alt="uz" /> <span>Uzbekistan <li data-country="Vanuatu" data-lat="-16" data-lng="167" data-alpha_3_code="VUT"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/vu.svg" alt="vu" /> <span>Vanuatu <li data-country="Venezuela, Bolivarian Republic of" data-lat="8" data-lng="-66" data-alpha_3_code="VEN"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ve.svg" alt="ve" /> <span>Venezuela, Bolivarian Republic of <li data-country="Viet Nam" data-lat="16" data-lng="106" data-alpha_3_code="VNM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/vn.svg" alt="vn" /> <span>Viet Nam <li data-country="Virgin Islands, British" data-lat="18.5" data-lng="-64.5" data-alpha_3_code="VGB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/vg.svg" alt="vg" /> <span>Virgin Islands, British <li data-country="Virgin Islands, U.S." data-lat="18.3333" data-lng="-64.8333" data-alpha_3_code="VIR"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/vi.svg" alt="vi" /> <span>Virgin Islands, U.S. <li data-country="Wallis and Futuna" data-lat="-13.3" data-lng="-176.2" data-alpha_3_code="WLF"> <li data-country="Western Sahara" data-lat="24.5" data-lng="-13" data-alpha_3_code="ESH"> <li data-country="Yemen" data-lat="15" data-lng="48" data-alpha_3_code="YEM"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/ye.svg" alt="ye" /> <span>Yemen <li data-country="Zambia" data-lat="-15" data-lng="30" data-alpha_3_code="ZMB"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/zm.svg" alt="zm" /> <span>Zambia <li data-country="Zimbabwe" data-lat="-20" data-lng="30" data-alpha_3_code="ZWE"> <img src="https://www.gangasagar-tourism.com/wp-content/plugins/opal-hotel-room-booking/assets/images/flags/zw.svg" alt="zw" /> <span>Zimbabwe jQuery(document).ready(function($){ jQuery('#wpcs_tab_342').click(function($){ if( ! (jQuery('#wpcs_content_main_342').hasClass('is_open')) ){ // Open slider wpcs_open_slider_342(); } else { // close slider wpcs_close_slider_342(); } }); jQuery("#wpcs_overlay_342, #wpcs_close_slider_342").click(function(){ wpcs_close_slider_342(); }); }); function wpcs_open_slider_342(do_repeat){ do_repeat = typeof do_repeat !== 'undefined' ? do_repeat : 0 ; if( do_repeat !== 0 ){ jQuery('#wpcs_content_main_342').addClass('do_repeat'); jQuery( "#wpcs_content_main_342" ).data( "interval", do_repeat ); } if( ! (jQuery('#wpcs_content_main_342').hasClass('is_open')) && !(jQuery('#wpcs_content_main_342').hasClass('is_opening')) ){ // hide tap jQuery('#wpcs_tab_342,.wpcs_tab').fadeTo("slow", 0); jQuery('#wpcs_content_main_342').addClass('is_opening'); jQuery("#wpcs_overlay_342").addClass('wpcs_overlay_display_cross'); jQuery( "#wpcs_overlay_342").fadeIn('fast'); // PRO FEATURE - PUSH BODY jQuery('#wpcs_content_main_342').addClass('is_open'); jQuery( "#wpcs_content_main_342" ).animate({ opacity: 1, left: "+=500" }, 250 , function() { // hide tap jQuery('#wpcs_tab_342,.wpcs_tab').fadeTo("slow", 0); // Trigger some thing here once completely open jQuery( "#wpcs_content_inner_342").fadeTo("slow" , 1); // Remove is_opening class jQuery('#wpcs_content_main_342').removeClass('is_opening'); }); } } function wpcs_close_slider_342(){ if( (jQuery('#wpcs_content_main_342').hasClass('is_open')) && !(jQuery('#wpcs_content_main_342').hasClass('is_closing')) ) { jQuery("#wpcs_overlay_342").removeClass('wpcs_overlay_display_cross'); jQuery('#wpcs_content_main_342').addClass('is_closing'); jQuery("#wpcs_content_main_342").animate({ left: "-=500" } , 250 , function () { // Trigger some thing here once completely close jQuery("#wpcs_content_main_342").fadeTo("fast", 0); jQuery("#wpcs_content_inner_342").slideUp('fast'); jQuery("#wpcs_overlay_342").fadeOut('slow'); jQuery('body').removeClass('fixed-body'); // Removing is_open class in the end to avoid any confliction jQuery('#wpcs_content_main_342').removeClass('is_open'); jQuery('#wpcs_content_main_342').removeClass('is_closing'); // display tap jQuery('#wpcs_tab_342,.wpcs_tab').fadeTo("slow", 1); }); if( (jQuery('#wpcs_content_main_342').hasClass('do_repeat')) ) { setTimeout(function () { wpcs_open_slider_342(0); }, 0 ); } } } .fixed-body{ position: relative; left: 0px; } div#wpcs_tab_342 { border: 1px solid #7f7f7f; border-top:none; cursor: pointer; width: 170px; height: 34px; overflow: hidden; background: #c17041; color: #ffffff; padding: 2px 0px 2px 0px; position: fixed; top: 200px; left: -68px; text-align: center; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); z-index: 9999999; font-size: 18px; } div#wpcs_content_main_342 { opacity:0; position: fixed; overflow-y: scroll; width: 500px; max-width: 100%; height: 100%; background: #ffffff; color: black; top: 0px; left: -500px; padding: 0px; margin: 0px; z-index: 9999999; } #wpcs_close_slider_342 img { max-width: 100%; } div#wpcs_content_inner_342 { display: none; max-width: 100%; min-height: 100%; background: #fcfcfc; padding: 20px 20px 20px 20px; margin: 60px 40px 60px 40px; color: #eeee22; border: 1px solid #0c0000; } div#wpcs_content_inner_342 label{ color: #eeee22; } div#wpcs_overlay_342{ /*cursor: url(https://www.gangasagar-tourism.com/wp-content/plugins/wp-contact-slider/img/cursor_close.png), auto;*/ display: none; width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 999999; background: rgba(49, 49, 49, 0.65); } .wpcs_overlay_display_cross{ cursor: url(https://www.gangasagar-tourism.com/wp-content/plugins/wp-contact-slider/img/cursor_close.png), auto; } /* To display scroll bar in slider conditionally */ div#wpcs_close_slider_342 { top: 0px; right: 0px; position: absolute; bottom: 0px; width: 32px; height: 32px; cursor: pointer; background: #0000007a; padding: 0px; overflow: hidden; } .wpcs-cf7, .wpcs-gf, .wpcs-wp-form, .wpcs-caldera-form, .wpcs-constant-forms, .wpcs-constant-forms, .wpcs-pirate-forms, .wpcs-si-contact-form, .wpcs-formidable, .wpcs-form-maker, .wpcs-form-craft, .visual-form-builde { overflow: hidden; } /***** WPCS Media Query ****/ @media (max-width: 600px) { #wpcs_tab_342, #wpcs_content_main_342, #wpcs_overlay_342 { display: none !important; } }
We Call You
#happyforms-352 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 30px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #f92100; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Share your Plan
/* <![CDATA[ */ var astra = {"break_point":"921","isRtl":""}; /* ]]> */ /* <![CDATA[ */ var eae_editor = {"plugin_url":"https:\/\/www.gangasagar-tourism.com\/wp-content\/plugins\/addon-elements-for-elementor-page-builder\/"}; /* ]]> */ jQuery(document).ready(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); /* <![CDATA[ */ var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}}; /* ]]> */ /* <![CDATA[ */ var OpalHotel = {"ajaxurl":"https:\/\/www.gangasagar-tourism.com\/wp-admin\/admin-ajax.php?opalhotel-nonce=afd8a017c0","simpleAjaxUrl":"https:\/\/www.gangasagar-tourism.com\/wp-admin\/admin-ajax.php","assetsURI":"https:\/\/www.gangasagar-tourism.com\/wp-content\/plugins\/opal-hotel-room-booking\/assets\/","options":[],"timezone_string":"Europe\/London","label":{"delete":"Delete","unavailable":"Unavailable","available":"Available","geoLocationError":"Sorry we can not find your position right now. Please try later.","oops":"Oops! Please try again."},"datepicker":{"closeText":"Done","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":{"January":"Jan","February":"Feb","March":"Mar","April":"Apr","May":"May","June":"Jun","July":"Jul","August":"Aug","September":"Sep","October":"Oct","November":"Nov","December":"Dec"},"monthStatus":"Show a different month","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM dd, yy","firstDay":"1","isRTL":false},"arrival_departure_invalid":"Arrival date and Departure date is invalid.","select":{"placeholder":"Search Package","empty":"Please Select Package."},"something_wrong":"Something went wrong. Please try again.","quantity_invalid":"Quantity is invalid. Please try again.","is_reservation_page":"","coupon_empty":"Please enter coupon code.","require_rating":"Please rating before submit your review.","datepicker_invalid":"Arrival date and Departure date is invalid.","enter_amount":"Please enter amount.","select_date_week":"Please select week days.","nonces":{"preload_single_book_room_form":"b84949b14a","get_location_by_ip":"a557665b01"}}; /* ]]> */ /* <![CDATA[ */ var ElementorMenusFrontendConfig = {"ajaxurl":"https:\/\/www.gangasagar-tourism.com\/wp-admin\/admin-ajax.php","nonce":"26ef7017f3"}; var elementorScreenReaderText = {"expand":"expand child menu","collapse":"collapse child menu"}; var elementorSecondaryScreenReaderText = {"expand":"expand child menu","collapse":"collapse child menu"}; /* ]]> */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"version":"2.5.14","urls":{"assets":"https:\/\/www.gangasagar-tourism.com\/wp-content\/plugins\/elementor\/assets\/"},"settings":{"page":[],"general":{"elementor_global_image_lightbox":"yes","elementor_enable_lightbox_in_editor":"yes"}},"post":{"id":287,"title":"Home","excerpt":"\n\t\t\t\t\t\t"}}; /* <![CDATA[ */ var _happyFormsEmailSettings = {"url":"https:\/\/www.gangasagar-tourism.com\/wp-admin\/admin-ajax.php","autocompleteSource":["gmail.com","yahoo.com","hotmail.com","aol.com","icloud.com","outlook.com"]}; /* ]]> */ /* <![CDATA[ */ var HappyFormsPhoneSettings = {"codes":{"376":"AD","971":"AE","93":"AF","1268":"AG","1264":"AI","355":"AL","374":"AM","244":"AO","672":"AQ","54":"AR","1684":"AS","43":"AT","61":"AU","297":"AW","994":"AZ","387":"BA","1246":"BB","880":"BD","32":"BE","226":"BF","359":"BG","973":"BH","257":"BI","229":"BJ","590":"BL","1441":"BM","673":"BN","591":"BO","55":"BR","1242":"BS","975":"BT","267":"BW","375":"BY","501":"BZ","1":"US","243":"CD","236":"CF","242":"CG","41":"CH","682":"CK","56":"CL","237":"CM","86":"CN","57":"CO","506":"CR","53":"CU","238":"CV","357":"CY","420":"CZ","49":"DE","253":"DJ","45":"DK","1767":"DM","1809":"DO","213":"DZ","593":"EC","372":"EE","20":"EG","291":"ER","34":"ES","251":"ET","358":"FI","679":"FJ","500":"FK","691":"FM","298":"FO","33":"FR","241":"GA","44":"GB","1473":"GD","995":"GE","233":"GH","350":"GI","299":"GL","220":"GM","224":"GN","30":"GR","502":"GT","1671":"GU","245":"GW","592":"GY","852":"HK","504":"HN","385":"HR","509":"HT","36":"HU","62":"ID","353":"IE","972":"IL","91":"IN","964":"IQ","98":"IR","354":"IS","39":"IT","1876":"JM","962":"JO","81":"JP","254":"KE","996":"KG","855":"KH","686":"KI","269":"KM","1869":"KN","850":"KP","82":"KR","965":"KW","1345":"KY","856":"LA","961":"LB","1758":"LC","423":"LI","94":"LK","231":"LR","266":"LS","370":"LT","352":"LU","371":"LV","218":"LY","212":"MA","377":"MC","373":"MD","382":"ME","261":"MG","692":"MH","389":"MK","223":"ML","95":"MM","976":"MN","853":"MO","1670":"MP","222":"MR","1664":"MS","356":"MT","230":"MU","960":"MV","265":"MW","52":"MX","60":"MY","258":"MZ","264":"NA","687":"NC","227":"NE","234":"NG","505":"NI","31":"NL","47":"NO","977":"NP","674":"NR","683":"NU","64":"NZ","968":"OM","507":"PA","51":"PE","689":"PF","675":"PG","63":"PH","92":"PK","48":"PL","508":"PM","870":"PN","351":"PT","680":"PW","595":"PY","974":"QA","40":"RO","381":"RS","7":"RU","250":"RW","966":"SA","677":"SB","248":"SC","249":"SD","46":"SE","65":"SG","290":"SH","386":"SI","421":"SK","232":"SL","378":"SM","221":"SN","252":"SO","597":"SR","239":"ST","503":"SV","963":"SY","268":"SZ","1649":"TC","235":"TD","228":"TG","66":"TH","992":"TJ","690":"TK","670":"TL","993":"TM","216":"TN","676":"TO","90":"TR","1868":"TT","688":"TV","886":"TW","255":"TZ","380":"UA","256":"UG","598":"UY","998":"UZ","1784":"VC","58":"VE","1284":"VG","1340":"VI","84":"VN","678":"VU","681":"WF","685":"WS","967":"YE","262":"YT","27":"ZA","260":"ZM","263":"ZW"}}; /* ]]> */ /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
#happyforms-365 { --happyforms-form-width: 100; --happyforms-form-title-font-size: 32px; --happyforms-part-title-font-size: 16px; --happyforms-part-description-font-size: 14px; --happyforms-part-value-font-size: 16px; --happyforms-submit-button-font-size: 18px; --happyforms-color-primary: #000000; --happyforms-color-success-notice: #ebf9f0; --happyforms-color-success-notice-text: #1eb452; --happyforms-color-error: #ff7550; --happyforms-color-error-notice: #ffeae5; --happyforms-color-error-notice-text: #ff4200; --happyforms-color-part-title: #000000; --happyforms-color-part-value: #000000; --happyforms-color-part-placeholder: #888888; --happyforms-color-part-border: #dbdbdb; --happyforms-color-part-border-focus: #407fff; --happyforms-color-part-background: #ffffff; --happyforms-color-part-background-focus: #ffffff; --happyforms-color-submit-background: #407fff; --happyforms-color-submit-background-hover: #3567cc; --happyforms-color-submit-border: transparent; --happyforms-color-submit-text: #ffffff; --happyforms-color-submit-text-hover: #ffffff; --happyforms-color-rating: #cccccc; --happyforms-color-rating-hover: #f39c00; --happyforms-color-rating-bg: #efefef; --happyforms-color-rating-bg-hover: #407fff; --happyforms-color-table-row-odd: #fcfcfc; --happyforms-color-table-row-even: #efefef; --happyforms-color-table-row-odd-text: #000000; --happyforms-color-table-row-even-text: #000000; --happyforms-color-choice-checkmark-bg: #ffffff; --happyforms-color-choice-checkmark-bg-focus: #000000; --happyforms-color-choice-checkmark-color: #ffffff; --happyforms-color-dropdown-item-bg: #ffffff; --happyforms-color-dropdown-item-text: #000000; --happyforms-color-dropdown-item-bg-hover: #dbdbdb; --happyforms-color-dropdown-item-text-hover: #000000; }
Plan Your Trips
Email
jQuery(function() { jQuery(document).on('click', '.paoc-popup', function() { var options = jQuery(this).data('conf'); new Custombox.modal(options).open(); }); });
0 notes
diegojaviervolpe · 4 years
Text
¿Qué son las etiquetas H y cómo se utilizan?
¿Qué son las etiquetas H y cómo se utilizan?
Cuando elaboramos contenido para un sitio web, más que todo en los casos en los que trabajamos con redacción web, darle un buen formato al texto es sumamente importante. Poder enfatizar dónde tenemos un apartado importante o categorizar la información es imprescindible para una estructura limpia y estética, y a la vez que supone un plus con respecto al SEO. Pues bien, llegó la hora de que…
View On WordPress
0 notes
dlosadar · 4 years
Text
La pandilla homofóbica rusa "Knife International" inspirada en Saw films planea matar a activistas LGBT en toda Europa
<
div>
Una banda homofóbica de SICK llamada Knife International, inspirada en las películas de terror, Saw ha prometido matar a personas LGBT en toda Europa.
Los matones emprendieron una guerra contra la comunidad gay rusa mediante la creación de un sitio web que enumera los nombres de los activistas y los llama a ser "perseguidos y asesinados".
4 4
Matones retorcidos han pedido que se mate a los homosexuales en Rusia y no prometen hacer lo mismo en toda Europa. En la foto, un cartel de "Saw" repugnante enviado a activistas LGBT
El año pasado, Yelena Grigoryeva, una de las voces LGBT más prominentes del país, fue asesinada después de que su información personal fuera incluida en la "lista de muertos", que estuvo desactivada durante unos días. más tarde.
El eslogan utilizado por el grupo es "cazarlos, encontrarlos, matarlos y le pagaremos", así como fotos del asesino de la franquicia de películas Saw.
Desde que se eliminó el sitio, la pandilla ha seguido enviando amenazas de muerte a activistas en Rusia y desde entonces ha revelado que tienen representantes en países europeos.
Svetlana Zakharova, de 32 años, de San Petersburgo, le dijo a Sun Online que ya recibió cinco amenazas del grupo este año.
AMENAZAS DE MUERTE
Ella dice que los gángsters se sienten empoderados por las leyes de "propaganda gay" del gobierno ruso, acusadas de un aumento en los ataques homofóbicos desde 2013.
Svetlana, que trabaja para la red LGBT del país, dijo: "En los correos electrónicos, dicen cosas como 'tú serás el próximo'.
"La gente detrás de estas amenazas está tratando de pretender tener el apoyo del gobierno".
"& # 39; Somos el poder y tú serás el próximo", es el tipo de lenguaje que usan ".
En la última amenaza que recibió en abril, el grupo reveló su intención de llevar a cabo ataques en países como Alemania y los Países Bajos antes de "continuar expandiéndose" en el resto del país. continente.
OBJETIVO DE LAS PERSONAS LGBT EN EUROPA
El correo electrónico decía: "Está comenzando un proyecto de nuestros europeos con puntos de vista similares bajo el nombre de" International Knife ".
"Por el momento, el proyecto se basará en cinco ciudades, a saber, Varsovia (Polonia), Ostrava (República Checa), Berlín (Alemania), Jarkov (Ucrania) y Arnhem (Países Bajos) con una mayor expansión en la mayor parte de Europa.
"La actividad principal de la organización será la regulación del activismo LGBT en Europa".
Yelena Grigoryeva murió después de ser apuñalada varias veces y estrangulada por un grupo de hombres en San Petersburgo en julio pasado, un asesinato que fue clasificado como un crimen de odio anti-LGBT por el perro guardián principal del Centro SOVA.
4 4
El grupo ahora se llama Knife International
4 4
Yelena Grigoryeva fue asesinada en julio pasado después de haber enumerado su información personal en el sitio de la muerte de SawCrédito: Noticias de Europa Central
Sin embargo, la policía dice que el asesinato no fue motivado por su sexualidad, aunque su nombre, que apareció en una "lista de muertes" en el sitio web de Saw, se cerró unos días después del asesinato.
La red LGBT insiste en que los policías no investigaron adecuadamente el crimen a pesar de que tres sospechosos fueron arrestados y un hombre, Aleksei Volnyanko, de 28 años, confesó el asesinato.
Los activistas han afirmado que Volnyanko fue un "chivo expiatorio" en el asesinato de Yelena, quien fue un destacado crítico del líder ruso Vladimir Putin, informa Radio Free Europe.
Los medios estatales apoyaron a la policía y defendieron la teoría de que el activista, que se opuso a la anexión de Moscú de la península de Crimea por Ucrania, tenía un "estilo de vida antisocial". y un problema con la bebida
RELACIONADO CON ASESINATO
Cuando el sitio dijo que Saw apareció por primera vez en línea en 2018, los ataques homofóbicos explotaron en la región rusa de Bashkortostán y, en particular, en su capital, Ufa.
Los activistas han recibido carteles que representan al asesino de rompecabezas con la leyenda "50 de los mejores homófobos de la República Chechena que visitan la capital baskir".
Chechenia es una república dentro de la Federación Rusa cuyo líder Ramzan Kadyrov es franco intolerante y afirmó que "no había homosexuales" en su país.
<
div class=»article__media-img-container open-gallery» data-index=»2321207″><img alt=»Una captura de pantalla del sitio homofóbico con el eslogan «Saw Against LGBT'» class=»lazyload» src=»https://www.mundoaldia.es/wp-content/uploads/2020/07/NINTCHDBPICT000594622314.jpg» data-credit=»» data- data-img=»https://ift.tt/3eeyrgA; />4 4
Una captura de pantalla del sitio homofóbico con el eslogan "Saw Against LGBT"
La periodista Regina Khisamova, de la ciudad de Kazán, al oeste de Ufa, dijo que las personas LGBT fueron "cazadas y golpeadas en las calles" en 2018 y 2019.
Ella le dijo a Sun Online que la policía de la ciudad no protege a la comunidad LGBT y dijo: "Las víctimas rara vez acuden a la policía porque no pueden encontrar ayuda allí.
"Nadie tiene en cuenta las declaraciones de personas que hablan abiertamente sobre su orientación".
Esta semana, Regina entrevistó a Aidar Ismagilov, un activista gay de Kazán, quien dice que fue blanco del grupo Saw durante su visita a Ufa.
Él dijo: "Hace unos años, fui a trabajar a Ufa durante un mes y conocí a un tipo en línea que afirmaba ser parte del movimiento activista.
"Me invitó a una visita. Sin embargo, cuando hablé con un amigo del chico, dijo que de alguna manera estaba relacionado con "Saw".
"Casi me di vuelta en la puerta de su casa, me salvó. Este tipo finalmente me escribió y me amenazó. "
DEPPS DE DESESPERACIÓN
La nueva foto muestra la cara magullada de Amber después de que Depp arrojó un teléfono en una fila de caca &#39;&#39;.</span></p></div><div class="rail__item swiper-slide"><div class="rail__item-image"><div class="teaser__image-container"><a href="http://www.mundoaldia.es/news/12094820/uk-coronavirus-daily-death-toll-latest/"><picture><source media="(max-width: 680px)" data- /><source data- /><img width="150" height="96" class="lazyload" alt="" src="https://www.mundoaldia.es/wp-content/uploads/2020/07/TM-comp-deathToll.jpg?strip=all&w=300&h=192&crop=1"/></picture></div></div><p><span class="rail__item-sub"><h3 class="rail__item-headline t-p-color">DOBLE TRASTORNO</h3>El número de muertos por virus en el Reino Unido aumenta 148 veces, el doble el sábado pasado después de la liberación del bloqueo</span></p></div><div class="rail__item swiper-slide"><div class="rail__item-image"><div class="teaser__image-container"><a href="http://www.mundoaldia.es/news/12097775/naya-riveras-mom-pictured-lake-piru-disappeared/"><picture><source media="(max-width: 680px)" data- /><source data- /><img width="150" height="96" class="lazyload" alt="" src="https://www.mundoaldia.es/wp-content/uploads/2020/07/TM-US-comp-Naya-1-1.jpg?strip=all&w=300&h=192&crop=1"/></picture></div></div><p><span class="rail__item-sub"><h3 class="rail__item-headline t-p-color">ANGUSTIOSO</h3>La madre de Naya cae de rodillas en el muelle cerca de donde desapareció la estrella de Glee</span></p></div><div class="rail__item swiper-slide"><div class="rail__item-image"><div class="teaser__image-container"><a href="http://www.mundoaldia.es/news/12096566/office-working-never-return-embrace-home-working/"><picture><source media="(max-width: 680px)" data- /><source data- /><img width="150" height="96" class="lazyload" alt="" src="https://www.mundoaldia.es/wp-content/uploads/2020/07/TM-comp-Highstreet.jpg?strip=all&w=300&h=192&crop=1"/></picture></div></div><p><span class="rail__item-sub"><h3 class="rail__item-headline t-p-color">COMODIDAD EN CASA</h3>Las oficinas NUNCA regresarán, ya que las empresas y el personal aceptan la tarea a pesar de la llamada de Boris</span></p></div><div class="rail__item swiper-slide"><div class="rail__item-image"><div class="teaser__image-container"><a href="http://www.mundoaldia.es/news/12095363/tiger-king-zoo-raided-police-body-alligator/"><picture><source media="(max-width: 680px)" data- /><source data- /><img width="150" height="96" class="lazyload" alt="" src="https://www.mundoaldia.es/wp-content/uploads/2020/07/MB-US-COMP-JOE-1.jpg?strip=all&w=300&h=192&crop=1"/></picture></div></div><p><span class="rail__item-sub"><h3 class="rail__item-headline t-p-color">GRIM FIND</h3>La policía ataca el zoológico Tiger King por temores de que los humanos permanezcan encontrados en la pluma de cocodrilo</span></p></div><div class="rail__item swiper-slide"><div class="rail__item-image"><div class="teaser__image-container"><a href="http://www.mundoaldia.es/news/12094338/scamming-gran-blind-clueless-husband/"><picture><source media="(max-width: 680px)" data- /><source data- /><img width="150" height="96" class="lazyload" alt="" src="https://www.mundoaldia.es/wp-content/uploads/2020/07/RB-COMP-SCAN-GRANNY-2.jpg?strip=all&w=300&h=192&crop=1"/></picture></div></div><p><span class="rail__item-sub"><h3 class="rail__item-headline t-p-color">PIEL CIEGA</h3>Gran, quien mintió diciendo que era ciega por £ 1 millón en ganancias, es la mujer más loca de todos los tiempos ''
El destacado activista británico LGBT Peter Tatchell criticó al régimen de Putin por no tomar medidas contra los retorcidos homófobos.
Le dijo a Sun Online: "Estas amenazas de vigilancia en línea y los violentos ataques que siguieron casi nunca continúan.
"La dieta de Putin permite que eso suceda. Él confía en los extremistas nacionalistas homofóbicos para parte de su apoyo electoral, por lo que no quiere alienarlos.
"El estado ruso ve a estos extremistas como un medio útil para intimidar a la comunidad LGBT +, mientras mantiene sus propias manos limpias".
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; n.push=n;n.loaded=!0;n.version='2.0';n.queue=();t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)(0);s.parentNode.insertBefore(t,s)}(window, document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '752905198150451'); fbq('track', "PageView");
The post La pandilla homofóbica rusa "Knife International" inspirada en Saw films planea matar a activistas LGBT en toda Europa appeared first on Mundo Al Dia.
from Mundo Al Dia https://ift.tt/2ATjaEk via IFTTT
0 notes
jalal5518 · 4 years
Photo
Tumblr media
الداخلية المصرية تعلن مقتل اثنين من العناصر الإرهابية من المطلوبين أمنيا في مداهمة في محافظة القليوبية https://ift.tt/3ibLVvB
0 notes
aggilbewara · 4 years
Text
H+3 Idul Fitri 1441 H, Gegana Polda Jabar Terus Tingkatkan Pengamanan Penyekatan Posko PSBB
H+3 Idul Fitri 1441 H, Gegana Polda Jabar Terus Tingkatkan Pengamanan Penyekatan Posko PSBB
Garut,bewarajabar.com — Rabu (27/05/20) – 3 hari setelah pelaksanaan hari raya idul fitri 1441 H Anggota Detasemen Gegana Sat Brimob Polda Jabar, terus menggelar kegiatan penyekatan bagi para pemudik yang hendak keluar masuk wilayah Garut.
Salah satu Posko penyekatan pemudik yang terus bekerja 24 jam adalah Posko penyekatan PSBB di wilayah Limbangan, Limbangan merupakan salah satu wilayah…
View On WordPress
0 notes
lokmanhekimsite · 4 years
Text
El Dezenfektanı Antibakteriyel Jel Dr Stop 1000 ML
El Dezenfektanı Antibakteriyel Jel Dr Stop 1000 ML El Dezenfektanı Antibakteriyel Jel Dr Stop Kaç ML ?
El Dezenfektanı Antibakteriyel Jel Dr Stop 1000 ML
El Dezenfektanı Antibakteriyel Jel Dr Stop Kullanıcı Yorumları
El Dezenfektanı Antibakteriyel Jel Dr Stop kullananlar, yani tüketicilerin El Dezenfektanı Antibakteriyel Jel Dr Stop kullanıcı yorumlarısayesinde ürün hakkında geniş bilgiler…
View On WordPress
0 notes
percetakankarawang · 4 years
Text
Brochure Yellow
Dimensions: W:90 x D:90 x H:103cm (Seat height: 60cm)
Built around a solid beech frame with legs in polished stainless steel. The Wing chair employs hand-finished stainless steel legs that are virtually maintenance free. CH445 works equally well in groups and on its own, and is best placed where its elegant design can be viewed from all sides.
Ut at erat id nunc maximus iaculis in sed mi.
Lorem…
View On WordPress
0 notes
jalal5518 · 4 years
Photo
Tumblr media
ريال مدريد الإسباني يهزم بيتيس وحكم الفيديو يخطف الأنظار https://ift.tt/346yurT
0 notes
jalal5518 · 4 years
Photo
Tumblr media
هجوم على دورية أمن في محافظة الكرك في الأردن https://ift.tt/32V2jLn
0 notes