{"id":2060,"date":"2024-12-10T08:34:05","date_gmt":"2024-12-10T08:34:05","guid":{"rendered":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/?page_id=2060"},"modified":"2024-12-10T08:34:05","modified_gmt":"2024-12-10T08:34:05","slug":"responsive-vs-adaptive-web-design","status":"publish","type":"page","link":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/","title":{"rendered":"Responsive vs Adaptive Web design"},"content":{"rendered":"\n<p>When creating websites, two primary approaches to design and layout stand out:\u00a0<strong>Responsive Web Design (RWD)<\/strong>\u00a0and\u00a0<strong>Adaptive Web Design (AWD)<\/strong>. Both aim to provide users with an optimal viewing experience across various devices, but they differ in implementation and philosophy.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><\/td><td><strong>Responsive Web Design (RWD)<\/strong><\/td><td><strong>Adaptive Web Design (AWD)<\/strong><\/td><\/tr><tr><td><strong>Definition<\/strong><\/td><td>A flexible layout that adapts automatically to any screen size or device.<\/td><td>Predefined layouts designed for specific screen sizes.<\/td><\/tr><tr><td><strong>Implementation<\/strong><\/td><td>Utilizes fluid grids, flexible images, and media queries in CSS.<\/td><td>Uses static layouts and JavaScript to switch between versions.<\/td><\/tr><tr><td><strong>Examples<\/strong><\/td><td>1.\u00a0<a href=\"https:\/\/github.com\/\">https:\/\/github.com<\/a><a href=\"https:\/\/github.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">\/<\/a><br>2.<a href=\"https:\/\/www.shopify.com\/ca\">https:\/\/www.shopify.com\/ca<\/a><br>3.<a href=\"https:\/\/www.dropbox.com\/\">https:\/\/www.dropbox.com\/<\/a><br>4.<a href=\"https:\/\/my.zone.eu\/hosting\/jelizavetaostapjuk23.thkit.ee\/home?lang=et\">jelizavetaostapjuk23.thkit.ee<\/a><\/td><td>1.<a href=\"https:\/\/www.apple.com\/\">https:\/\/www.apple.com\/<\/a><br>2.<a href=\"https:\/\/css-tricks.com\/\">https:\/\/css-tricks.com\/<\/a><br>3.<a href=\"https:\/\/www.amazon.com\/\">https:\/\/www.amazon.com\/<\/a><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Responsive Web Design (RWD)<\/strong>\u00a0properties<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Fluid Grids<\/h3>\n\n\n\n<p><strong>Fluid grids<\/strong>\u00a0are a key principle of responsive web design. They use proportional values instead of fixed units like pixels, allowing the layout to resize dynamically based on the screen size.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\n\/* Global styling *\/\n    body {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n    }\n    .container {\n      width: 90%; \/* Fluid width, adjusts to 90% of the viewport *\/\n      margin: 0 auto;\n      display: flex;\n      flex-wrap: wrap; \/* Allows items to wrap to the next line if needed *\/\n    }\n    .box {\n      background: #3498db;\n      color: white;\n      padding: 20px;\n      margin: 10px;\n      flex: 1 1 30%; \/* Flexbox properties: grow, shrink, and basis *\/\n    }\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-1024x291.png\" alt=\"\" class=\"wp-image-2092\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">2. Media queries<\/h3>\n\n\n\n<p><strong>Media queries<\/strong>\u00a0are a core feature of responsive web design. They allow you to apply specific styles depending on the size or features of the user\u2019s device, such as screen width, height, or resolution.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\nbody {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n    }\n    .container {\n      width: 100%;\n      margin: 0 auto;\n      text-align: center;\n    }\n    .box {\n      background: #3498db;\n      color: white;\n      padding: 20px;\n      margin: 10px auto;\n      width: 90%; \/* Default: Box takes up most of the screen *\/\n    }\n\n    \/* Media Query for tablets (screens wider than 768px) *\/\n    @media (min-width: 768px) {\n      .container {\n        display: flex;\n        justify-content: space-around;\n        flex-wrap: wrap; \/* Allows wrapping if needed *\/\n      }\n      .box {\n        width: 45%; \/* Adjust to fit two boxes per row *\/\n      }\n    }\n\n    \/* Media Query for desktops (screens wider than 1200px) *\/\n    @media (min-width: 1200px) {\n      .box {\n        width: 30%; \/* Adjust to fit three boxes per row *\/\n      }\n    }\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-1-1024x215.png\" alt=\"\" class=\"wp-image-2093\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3. Images and media<\/h3>\n\n\n\n<p><strong>Responsive images and media<\/strong>\u00a0adapt to different screen sizes and resolutions, ensuring that content looks great on any device. This is typically achieved using techniques like fluid images, the\u00a0<strong>&lt;picture><\/strong>\u00a0element, and the\u00a0<strong>srcset<\/strong>\u00a0attribute.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=&quot;UTF-8&quot;&gt;\n  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n  &lt;title&gt;Responsive Images and Media&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;div class=&quot;container&quot;&gt;\n    &lt;h1&gt;Responsive Images and Media Example&lt;\/h1&gt;\n\n    &lt;!-- Fluid Image --&gt;\n    &lt;img src=&quot;https:\/\/via.placeholder.com\/800x400&quot; alt=&quot;Example Image&quot;&gt;\n\n    &lt;!-- Responsive Image with srcset --&gt;\n    &lt;picture&gt;\n      &lt;source srcset=&quot;https:\/\/via.placeholder.com\/1200x600&quot; media=&quot;(min-width: 1200px)&quot;&gt;\n      &lt;source srcset=&quot;https:\/\/via.placeholder.com\/800x400&quot; media=&quot;(min-width: 768px)&quot;&gt;\n      &lt;img src=&quot;https:\/\/via.placeholder.com\/400x200&quot; alt=&quot;Responsive Image&quot;&gt;\n    &lt;\/picture&gt;\n\n    &lt;!-- Responsive Video --&gt;\n    &lt;video controls&gt;\n      &lt;source src=&quot;example-video.mp4&quot; type=&quot;video\/mp4&quot;&gt;\n      Your browser does not support the video tag.\n    &lt;\/video&gt;\n  &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\nbody {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n      text-align: center;\n    }\n    img {\n      max-width: 100%; \/* Ensures images do not exceed their container&#039;s width *\/\n      height: auto; \/* Maintains the aspect ratio *\/\n    }\n    video {\n      max-width: 100%;\n      height: auto;\n    }\n    .container {\n      padding: 20px;\n    }\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-2.png\" alt=\"\" class=\"wp-image-2094\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-3-387x1024.png\" alt=\"\" class=\"wp-image-2095\" style=\"width:223px;height:auto\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">4. Web fonts vs. system fonts<\/h3>\n\n\n\n<p>When designing websites, the choice of fonts plays a significant role in aesthetics, readability, and performance. Two common options are\u00a0<strong>web fonts<\/strong>\u00a0(custom fonts loaded from the web) and\u00a0<strong>system fonts<\/strong>\u00a0(fonts pre-installed on the user\u2019s device). Each has its pros and cons, impacting design and performance differently.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\n@import url(&#039;https:\/\/fonts.googleapis.com\/css2?family=Roboto:wght@400;700&amp;display=swap&#039;);\n\n    body {\n      font-family: &#039;Arial&#039;, sans-serif; \/* Fallback font if web font fails to load *\/\n      margin: 0;\n      padding: 0;\n    }\n\n    .web-font {\n      font-family: &#039;Roboto&#039;, sans-serif; \/* Custom Web Font *\/\n      color: #3498db;\n      padding: 20px;\n      text-align: center;\n    }\n\n    .system-font {\n      font-family: &#039;Times New Roman&#039;, serif; \/* System Font *\/\n      color: #2ecc71;\n      padding: 20px;\n      text-align: center;\n    }\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-4-1024x423.png\" alt=\"\" class=\"wp-image-2096\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Adaptive Web Design (AWD)<\/strong>\u00a0properties<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Meta tags<\/h3>\n\n\n\n<p>In\u00a0<strong>Adaptive Web Design<\/strong>, meta tags play a crucial role in tailoring the web page for specific devices and screen sizes. The most commonly used meta tag is the\u00a0<strong>viewport<\/strong>\u00a0meta tag, which ensures the layout is scaled correctly for the user\u2019s device.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=&quot;UTF-8&quot;&gt;\n  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n  &lt;title&gt;Meta Tags in Adaptive Design&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;div class=&quot;container&quot;&gt;\n    &lt;h1&gt;Meta Tags in Adaptive Design&lt;\/h1&gt;\n    &lt;p&gt;This page uses the viewport meta tag and media queries to adapt to different devices.&lt;\/p&gt;\n  &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\nbody {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n      text-align: center;\n    }\n\n    .container {\n      padding: 20px;\n    }\n\n    \/* Styles for small devices (e.g., phones) *\/\n    @media (max-width: 600px) {\n      body {\n        background-color: #f9ebea;\n      }\n      .container {\n        font-size: 14px;\n      }\n    }\n\n    \/* Styles for medium devices (e.g., tablets) *\/\n    @media (min-width: 601px) and (max-width: 1200px) {\n      body {\n        background-color: #fad7a0;\n      }\n      .container {\n        font-size: 18px;\n      }\n    }\n\n    \/* Styles for large devices (e.g., desktops) *\/\n    @media (min-width: 1201px) {\n      body {\n        background-color: #a9dfbf;\n      }\n      .container {\n        font-size: 22px;\n      }\n    }\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\">2. HTML Structure<\/h3>\n\n\n\n<p>In\u00a0<strong>Adaptive Web Design<\/strong>, the HTML structure is crafted to accommodate multiple layouts tailored for specific devices. This often includes conditional styles or scripts to load device-specific features while maintaining a clean and semantic structure.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=&quot;UTF-8&quot;&gt;\n  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n  &lt;meta name=&quot;description&quot; content=&quot;An example of adaptive web design using device-specific layouts.&quot;&gt;\n  &lt;title&gt;Adaptive Web Design Example&lt;\/title&gt;\n\n  &lt;!-- General CSS for all devices --&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;styles\/global.css&quot;&gt;\n\n  &lt;!-- Conditional CSS for specific devices --&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;styles\/small.css&quot; media=&quot;only screen and (max-width: 600px)&quot;&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;styles\/medium.css&quot; media=&quot;only screen and (min-width: 601px) and (max-width: 1200px)&quot;&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;styles\/large.css&quot; media=&quot;only screen and (min-width: 1201px)&quot;&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;header&gt;\n    &lt;h1&gt;Adaptive Web Design&lt;\/h1&gt;\n    &lt;nav&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=&quot;#home&quot;&gt;Home&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#about&quot;&gt;About&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#contact&quot;&gt;Contact&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/nav&gt;\n  &lt;\/header&gt;\n\n  &lt;main&gt;\n    &lt;section id=&quot;home&quot;&gt;\n      &lt;h2&gt;Welcome to Adaptive Design&lt;\/h2&gt;\n      &lt;p&gt;This design adjusts layouts for different screen sizes.&lt;\/p&gt;\n    &lt;\/section&gt;\n    \n    &lt;section id=&quot;about&quot;&gt;\n      &lt;h2&gt;About Adaptive Design&lt;\/h2&gt;\n      &lt;p&gt;Adaptive design creates specific layouts for mobile, tablet, and desktop devices.&lt;\/p&gt;\n    &lt;\/section&gt;\n    \n    &lt;section id=&quot;contact&quot;&gt;\n      &lt;h2&gt;Contact Us&lt;\/h2&gt;\n      &lt;form action=&quot;\/submit&quot; method=&quot;post&quot;&gt;\n        &lt;label for=&quot;name&quot;&gt;Name:&lt;\/label&gt;\n        &lt;input type=&quot;text&quot; id=&quot;name&quot; name=&quot;name&quot; required&gt;\n        \n        &lt;label for=&quot;email&quot;&gt;Email:&lt;\/label&gt;\n        &lt;input type=&quot;email&quot; id=&quot;email&quot; name=&quot;email&quot; required&gt;\n        \n        &lt;button type=&quot;submit&quot;&gt;Submit&lt;\/button&gt;\n      &lt;\/form&gt;\n    &lt;\/section&gt;\n  &lt;\/main&gt;\n\n  &lt;footer&gt;\n    &lt;p&gt;&amp;copy; 2024 Adaptive Design Example&lt;\/p&gt;\n  &lt;\/footer&gt;\n\n  &lt;!-- Optional JavaScript for enhancing adaptive features --&gt;\n  &lt;script src=&quot;scripts\/adaptive.js&quot;&gt;&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\">3. Media Queries<\/h3>\n\n\n\n<p><strong>Media queries<\/strong>\u00a0in Adaptive Web Design are used to create separate layouts tailored to specific screen sizes or device characteristics. This allows the website to adapt its design without relying on fluid grids or dynamic resizing.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=&quot;UTF-8&quot;&gt;\n  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n  &lt;title&gt;Media Queries in Adaptive Design&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;div class=&quot;container&quot;&gt;\n    &lt;h1&gt;Media Queries in Adaptive Design&lt;\/h1&gt;\n    &lt;p&gt;This page adapts its styles for small, medium, and large screens using media queries.&lt;\/p&gt;\n  &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\nbody {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n      text-align: center;\n      background-color: #f4f4f4;\n      color: #333;\n    }\n    .container {\n      padding: 20px;\n    }\n\n    \/* Medium devices (e.g., tablets) *\/\n    @media (min-width: 601px) and (max-width: 1200px) {\n      body {\n        background-color: #d1f0f0;\n        color: #222;\n      }\n      .container {\n        font-size: 18px;\n        width: 80%;\n        margin: 0 auto;\n      }\n    }\n\n    \/* Large devices (e.g., desktops) *\/\n    @media (min-width: 1201px) {\n      body {\n        background-color: #e0f7d4;\n        color: #111;\n      }\n      .container {\n        font-size: 22px;\n        width: 60%;\n        margin: 0 auto;\n      }\n    }\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">My opinion<\/h2>\n\n\n\n<p>In my opinion, Responsive Web Design is the better choice for most web projects. Its flexibility and ability to adapt to any device make it perfect for today\u2019s variety of screen sizes. While Adaptive Web Design can offer better performance for certain devices, the extra complexity in development and maintenance usually makes it less practical.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When creating websites, two primary approaches to design and layout stand out:\u00a0Responsive Web Design (RWD)\u00a0and\u00a0Adaptive Web Design (AWD). Both aim to provide users with an optimal viewing experience across various devices, but they differ in implementation and philosophy. Responsive Web Design (RWD) Adaptive Web Design (AWD) Definition A flexible layout that adapts automatically to any &hellip; <a href=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Responsive vs Adaptive Web design&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2060","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio\" \/>\n<meta property=\"og:description\" content=\"When creating websites, two primary approaches to design and layout stand out:\u00a0Responsive Web Design (RWD)\u00a0and\u00a0Adaptive Web Design (AWD). Both aim to provide users with an optimal viewing experience across various devices, but they differ in implementation and philosophy. Responsive Web Design (RWD) Adaptive Web Design (AWD) Definition A flexible layout that adapts automatically to any &hellip; Continue reading &quot;Responsive vs Adaptive Web design&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/\" \/>\n<meta property=\"og:site_name\" content=\"Jelizaveta Ostapjuk Portfolio\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/\",\"url\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/\",\"name\":\"Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/image-1024x291.png\",\"datePublished\":\"2024-12-10T08:34:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/image-1024x291.png\",\"contentUrl\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/image-1024x291.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/responsive-vs-adaptive-web-design\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Responsive vs Adaptive Web design\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/#website\",\"url\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/\",\"name\":\"Jelizaveta Ostapjuk Portfolio\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jelizavetaostapjuk23.thkit.ee\\\/wp\\\/eng\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/","og_locale":"en_US","og_type":"article","og_title":"Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio","og_description":"When creating websites, two primary approaches to design and layout stand out:\u00a0Responsive Web Design (RWD)\u00a0and\u00a0Adaptive Web Design (AWD). Both aim to provide users with an optimal viewing experience across various devices, but they differ in implementation and philosophy. Responsive Web Design (RWD) Adaptive Web Design (AWD) Definition A flexible layout that adapts automatically to any &hellip; Continue reading \"Responsive vs Adaptive Web design\"","og_url":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/","og_site_name":"Jelizaveta Ostapjuk Portfolio","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/","url":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/","name":"Responsive vs Adaptive Web design - Jelizaveta Ostapjuk Portfolio","isPartOf":{"@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/#primaryimage"},"image":{"@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/#primaryimage"},"thumbnailUrl":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-1024x291.png","datePublished":"2024-12-10T08:34:05+00:00","breadcrumb":{"@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/#primaryimage","url":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-1024x291.png","contentUrl":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/wp-content\/uploads\/2024\/12\/image-1024x291.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/responsive-vs-adaptive-web-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/"},{"@type":"ListItem","position":2,"name":"Responsive vs Adaptive Web design"}]},{"@type":"WebSite","@id":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/#website","url":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/","name":"Jelizaveta Ostapjuk Portfolio","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/pages\/2060","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/comments?post=2060"}],"version-history":[{"count":1,"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/pages\/2060\/revisions"}],"predecessor-version":[{"id":2062,"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/pages\/2060\/revisions\/2062"}],"wp:attachment":[{"href":"https:\/\/jelizavetaostapjuk23.thkit.ee\/wp\/eng\/wp-json\/wp\/v2\/media?parent=2060"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}