{"id":3479,"date":"2022-09-21T20:49:58","date_gmt":"2022-09-21T15:49:58","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3479"},"modified":"2025-10-21T09:12:21","modified_gmt":"2025-10-21T04:12:21","slug":"how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/","title":{"rendered":"How to Design Google Search Engine Landing Page UI Clone in HTML5 &#038; CSS3"},"content":{"rendered":"\n<p>Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using <strong>HTML5<\/strong> and <strong>CSS3<\/strong>?<\/p>\n\n\n\n<p>You\u2019re in the right place.<\/p>\n\n\n\n<p>In this guide I\u2019ll walk you through the full process\u2014structure, styling, responsiveness, accessibility, best practices, and complete source code\u2014so you can clone the UI (for learning or portfolio purposes) and understand how to build clean, modern web pages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>When users search online, the first thing they often see is Google\u2019s iconic search page: simple, intuitive, and spatially balanced. By recreating that landing-page style, you sharpen your HTML\/CSS fundamentals, practice semantic markup, responsive layout, and modern styling techniques.<\/p>\n\n\n\n<p>This article gives you everything you need\u2014from markup to CSS, tips to accessibility\u2014to build a <strong>landing page UI clone of Google\u2019s search page<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"486\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa-1024x486.png\" alt=\"How to Design Google Search Engine Landing Page UI Clone in HTML5 &amp; CSS3\" class=\"wp-image-4108\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa-1024x486.png 1024w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa-300x143.png 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa-768x365.png 768w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa-1536x730.png 1536w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa.png 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">1. Project Setup &amp; HTML5 Semantic Structure<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1.1 Folder and file structure<\/h3>\n\n\n\n<p>Create a folder, e.g., <code>google-clone<\/code>, and inside it:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">google-clone\/<br> \u251c index.html<br> \u2514 style.css<\/pre>\n\n\n\n<p>Link <code>style.css<\/code> from <code>index.html<\/code>.<br>Set your code editor (e.g., Visual Studio Code), and use live preview or browser refresh to test.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1.2 HTML5 semantic markup<\/h3>\n\n\n\n<p>Use semantic elements for clarity, accessibility and SEO. Example skeleton:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;HTML&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&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&quot;&gt;\n  &lt;title&gt;Google Clone&lt;\/title&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;header&gt;\u2026navigation links\u2026&lt;\/header&gt;\n  &lt;main&gt;\u2026logo + search form\u2026&lt;\/main&gt;\n  &lt;footer&gt;\u2026links and bottom bar\u2026&lt;\/footer&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n\n\n<p>Breaking it down:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>&lt;header><\/code>: Contains nav links (e.g., Gmail, Images)<\/li>\n\n\n\n<li><code>&lt;main><\/code>: The central block\u2014logo, search input, buttons<\/li>\n\n\n\n<li><code>&lt;footer><\/code>: Footer area with links (Privacy, Terms etc)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">1.3 Example HTML structure (detailed)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;HTML&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;header class=&quot;site-header&quot;&gt;\n  &lt;nav class=&quot;topnav&quot;&gt;\n    &lt;ul&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Gmail&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Images&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;button aria-label=&quot;Apps&quot;&gt;\u2630&lt;\/button&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;button class=&quot;signin&quot;&gt;Sign In&lt;\/button&gt;&lt;\/li&gt;\n    &lt;\/ul&gt;\n  &lt;\/nav&gt;\n&lt;\/header&gt;\n\n&lt;main class=&quot;site-main&quot;&gt;\n  &lt;div class=&quot;logo&quot;&gt;\n    &lt;img src=&quot;https:\/\/www.google.com\/images\/branding\/googlelogo\/1x\/googlelogo_color_272x92dp.png&quot;\n         alt=&quot;Google logo&quot; width=&quot;272&quot; height=&quot;92&quot;&gt;\n  &lt;\/div&gt;\n  &lt;form class=&quot;search-form&quot; role=&quot;search&quot; aria-label=&quot;Google search form&quot;&gt;\n    &lt;input type=&quot;text&quot; name=&quot;q&quot; aria-label=&quot;Search&quot; placeholder=&quot;Search Google or type a URL&quot;&gt;\n    &lt;div class=&quot;buttons&quot;&gt;\n      &lt;button type=&quot;submit&quot;&gt;Google Search&lt;\/button&gt;\n      &lt;button type=&quot;button&quot;&gt;I\u2019m Feeling Lucky&lt;\/button&gt;\n    &lt;\/div&gt;\n  &lt;\/form&gt;\n&lt;\/main&gt;\n\n&lt;footer class=&quot;site-footer&quot;&gt;\n  &lt;nav class=&quot;footnav&quot;&gt;\n    &lt;ul&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Advertising&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Business&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;How Search works&lt;\/a&gt;&lt;\/li&gt;\n    &lt;\/ul&gt;\n    &lt;ul&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Privacy&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Terms&lt;\/a&gt;&lt;\/li&gt;\n      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Settings&lt;\/a&gt;&lt;\/li&gt;\n    &lt;\/ul&gt;\n  &lt;\/nav&gt;\n&lt;\/footer&gt;\n<\/pre><\/div>\n\n\n\n<p>This gives you a clean, semantic base. Having proper <code>aria-label<\/code>s, roles, alt text helps accessibility and is good for SEO.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. CSS3 Styling: Layout, Colors, Typography<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">2.1 Global\/baseline styles<\/h3>\n\n\n\n<p>In <code>style.css<\/code>, start with resets and base typography:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\nbody {\n  font-family: Arial, sans-serif;\n  color: #202124;\n  line-height: 1.4;\n  min-height: 100vh;\n  display: flex;\n  flex-direction: column;\n}\na {\n  text-decoration: none;\n  color: inherit;\n}\nbutton {\n  font: inherit;\n  cursor: pointer;\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2.2 Header (navigation) styling<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">.site-header .topnav ul {\n  list-style: none;\n  display: flex;\n  justify-content: flex-end;\n  gap: 1.2rem;\n  padding: 1rem 2rem;\n}\n.site-header .topnav ul li a,\n.site-header .topnav ul li button {\n  color: rgba(0, 0, 0, 0.87);\n  font-size: 0.9rem;\n  background: none;\n  border: none;\n}\n.site-header .topnav ul li button.signin {\n  border: 1px solid #1a73e8;\n  background: #1a73e8;\n  color: #fff;\n  padding: 6px 12px;\n  border-radius: 4px;\n}\n.site-header .topnav ul li button.signin:hover,\n.site-header .topnav ul li a:hover {\n  text-decoration: underline;\n  opacity: 0.85;\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2.3 Main section styling<\/h3>\n\n\n\n<p>Center content vertically + horizontally. Using Flexbox:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">.site-main {\n  flex: 1;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 1rem;\n}\n.logo img {\n  display: block;\n  margin-bottom: 20px;\n}\n.search-form {\n  width: 100%;\n  max-width: 600px;\n}\n.search-form input[type=&quot;text&quot;] {\n  width: 100%;\n  padding: 14px 20px;\n  font-size: 1rem;\n  border: 1px solid #dfe1e5;\n  border-radius: 24px;\n  outline: none;\n  transition: box-shadow 0.3s ease, border-color 0.3s ease;\n}\n.search-form input[type=&quot;text&quot;]:focus {\n  border-color: #1a73e8;\n  box-shadow: 0 1px 6px rgba(32,33,36,0.28);\n}\n.search-form .buttons {\n  margin-top: 20px;\n  display: flex;\n  gap: 10px;\n  justify-content: center;\n}\n.search-form .buttons button {\n  padding: 10px 20px;\n  font-size: 0.9rem;\n  background: #f8f9fa;\n  border: 1px solid #f8f9fa;\n  border-radius: 4px;\n  color: #3c4043;\n}\n.search-form .buttons button:hover {\n  box-shadow: 0 1px 1px rgba(0,0,0,0.1);\n  border-color: #c6c6c6;\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2.4 Footer styling<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">.site-footer {\n  background: #f2f2f2;\n  padding: 1rem 2rem;\n  font-size: 0.8rem;\n  color: #70757a;\n}\n.footnav {\n  display: flex;\n  justify-content: space-between;\n  flex-wrap: wrap;\n  gap: 1rem;\n}\n.footnav ul {\n  list-style: none;\n  display: flex;\n  gap: 1rem;\n}\n.footnav ul li a:hover {\n  text-decoration: underline;\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2.5 Colors, spacing &amp; typography considerations<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Google\u2019s color palette hints: body text <code>#202124<\/code>, links <code>#1a73e8<\/code>, subtle grays for backgrounds.<\/li>\n\n\n\n<li>Maintain sufficient spacing (padding\/margin) for cleanliness and touch-targets.<\/li>\n\n\n\n<li>Use <code>rem<\/code>\/<code>em<\/code> for scalable typography.<\/li>\n\n\n\n<li>Use <code>max-width<\/code> and center alignment for main content so it doesn\u2019t stretch too wide on large screens.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">3. Responsiveness &amp; Flexbox (and\/or CSS Grid)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">3.1 Using Flexbox to centre and align<\/h3>\n\n\n\n<p>As shown above: using <code>display: flex; align-items: center; justify-content: center; flex-direction: column<\/code>. This ensures the logo + search form sits centered vertically and horizontally.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3.2 Media queries for smaller screens<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">@media (max-width: 600px) {\n  .search-form .buttons {\n    flex-direction: column;\n  }\n  .search-form .buttons button {\n    width: 100%;\n  }\n  .site-header .topnav ul {\n    justify-content: center;\n    padding: 0.5rem 1rem;\n  }\n}\n<\/pre><\/div>\n\n\n\n<p>This makes the layout adapt: buttons stack on mobile, navigation links centre, padding reduces.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3.3 Why responsiveness matters<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensures the UI works on mobile, tablet, desktop.<\/li>\n\n\n\n<li>Aligns with modern UX expectations and contributes to better ranking (Google recognises mobile-friendly pages).<\/li>\n\n\n\n<li>Flexbox and media queries are current best practices for layout responsiveness.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3.4 Optional: CSS Grid<\/h3>\n\n\n\n<p>You could use CSS Grid for the main layout, but for this simple UI, Flexbox is sufficient and simpler.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Accessibility &amp; Semantic HTML for SEO &amp; E-E-A-T<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">4.1 Semantic HTML<\/h3>\n\n\n\n<p>Using <code>&lt;header&gt;<\/code>, <code>&lt;main&gt;<\/code>, <code>&lt;footer&gt;<\/code> helps screen-readers, improves document structure, and supports SEO. The article from Medium emphasises this.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4.2 ARIA and labels<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For search input: <code>aria-label=\"Search\"<\/code>.<\/li>\n\n\n\n<li>For form: <code>role=\"search\"<\/code> (optional but helpful).<\/li>\n\n\n\n<li>For buttons: ensure descriptive text, avoid generic \u201cClick here\u201d.<\/li>\n\n\n\n<li>Alt text for logo image, e.g., <code>alt=\"Google logo\"<\/code>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4.3 SEO considerations<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <code>&lt;title><\/code> and proper <code>&lt;meta name=\"viewport\"><\/code>.<\/li>\n\n\n\n<li>Use <code>lang=\"en\"<\/code> attribute on <code>&lt;html><\/code>.<\/li>\n\n\n\n<li>Use meaningful link text (e.g., \u201cPrivacy\u201d rather than \u201cClick here\u201d).<\/li>\n\n\n\n<li>Clean code without inline styling clutter helps crawlers parse structure.<\/li>\n\n\n\n<li>Responsive design improves user experience (key for E-E-A-T: Experience, Expertise, Authoritativeness, Trust). While building a clone is a learning exercise, ensure you clearly label it as a clone\/tutorial if you publish so no confusion with original brand.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4.4 Performance &amp; best practices<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <code>width<\/code> and <code>height<\/code> attributes on images to prevent layout shift.<\/li>\n\n\n\n<li>Minimize file sizes (CSS is small in this case).<\/li>\n\n\n\n<li>Use <code>meta<\/code> tags properly.<\/li>\n\n\n\n<li>Keep markup clean\u2014unnecessary wrappers or deep nesting may reduce readability and slow rendering.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">5. Complete Source Code (index.html + style.css)<\/h2>\n\n\n\n<p>Here is full example code you can copy, run in your editor, and tweak.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5.1 <code>index.html<\/code><\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;HTML&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&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&quot;&gt;\n  &lt;title&gt;Google Clone&lt;\/title&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;header class=&quot;site-header&quot;&gt;\n    &lt;nav class=&quot;topnav&quot;&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Gmail&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Images&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;button aria-label=&quot;Google Apps&quot;&gt;\u2630&lt;\/button&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;button class=&quot;signin&quot;&gt;Sign In&lt;\/button&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/nav&gt;\n  &lt;\/header&gt;\n\n  &lt;main class=&quot;site-main&quot;&gt;\n    &lt;div class=&quot;logo&quot;&gt;\n      &lt;img src=&quot;https:\/\/www.google.com\/images\/branding\/googlelogo\/1x\/googlelogo_color_272x92dp.png&quot;\n           alt=&quot;Google logo&quot;\n           width=&quot;272&quot; height=&quot;92&quot;&gt;\n    &lt;\/div&gt;\n    &lt;form class=&quot;search-form&quot; role=&quot;search&quot; aria-label=&quot;Google search form&quot;&gt;\n      &lt;input type=&quot;text&quot; name=&quot;q&quot; aria-label=&quot;Search&quot; placeholder=&quot;Search Google or type a URL&quot;&gt;\n      &lt;div class=&quot;buttons&quot;&gt;\n        &lt;button type=&quot;submit&quot;&gt;Google Search&lt;\/button&gt;\n        &lt;button type=&quot;button&quot;&gt;I\u2019m Feeling Lucky&lt;\/button&gt;\n      &lt;\/div&gt;\n    &lt;\/form&gt;\n  &lt;\/main&gt;\n\n  &lt;footer class=&quot;site-footer&quot;&gt;\n    &lt;nav class=&quot;footnav&quot;&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Advertising&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Business&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;How Search works&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n      &lt;ul&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Privacy&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Terms&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Settings&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/nav&gt;\n  &lt;\/footer&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">5.2 <code>style.css<\/code><\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;CSS&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">\/* Reset &amp; base styles *\/\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n}\nbody {\n  font-family: Arial, sans-serif;\n  color: #202124;\n  line-height: 1.4;\n  min-height: 100vh;\n  display: flex;\n  flex-direction: column;\n}\na {\n  text-decoration: none;\n  color: inherit;\n}\nbutton {\n  font: inherit;\n  cursor: pointer;\n}\n\n\/* Header \/ navigation *\/\n.site-header .topnav ul {\n  list-style: none;\n  display: flex;\n  justify-content: flex-end;\n  gap: 1.2rem;\n  padding: 1rem 2rem;\n}\n.site-header .topnav ul li a,\n.site-header .topnav ul li button {\n  color: rgba(0, 0, 0, 0.87);\n  font-size: 0.9rem;\n  background: none;\n  border: none;\n}\n.site-header .topnav ul li button.signin {\n  border: 1px solid #1a73e8;\n  background: #1a73e8;\n  color: #fff;\n  padding: 6px 12px;\n  border-radius: 4px;\n}\n.site-header .topnav ul li a:hover,\n.site-header .topnav ul li button.signin:hover {\n  text-decoration: underline;\n  opacity: 0.85;\n}\n\n\/* Main section *\/\n.site-main {\n  flex: 1;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 1rem;\n}\n.logo img {\n  display: block;\n  margin-bottom: 20px;\n}\n.search-form {\n  width: 100%;\n  max-width: 600px;\n}\n.search-form input[type=&quot;text&quot;] {\n  width: 100%;\n  padding: 14px 20px;\n  font-size: 1rem;\n  border: 1px solid #dfe1e5;\n  border-radius: 24px;\n  outline: none;\n  transition: box-shadow 0.3s ease, border-color 0.3s ease;\n}\n.search-form input[type=&quot;text&quot;]:focus {\n  border-color: #1a73e8;\n  box-shadow: 0 1px 6px rgba(32,33,36,0.28);\n}\n.search-form .buttons {\n  margin-top: 20px;\n  display: flex;\n  gap: 10px;\n  justify-content: center;\n}\n.search-form .buttons button {\n  padding: 10px 20px;\n  font-size: 0.9rem;\n  background: #f8f9fa;\n  border: 1px solid #f8f9fa;\n  border-radius: 4px;\n  color: #3c4043;\n}\n.search-form .buttons button:hover {\n  box-shadow: 0 1px 1px rgba(0,0,0,0.1);\n  border-color: #c6c6c6;\n}\n\n\/* Footer *\/\n.site-footer {\n  background: #f2f2f2;\n  padding: 1rem 2rem;\n  font-size: 0.8rem;\n  color: #70757a;\n}\n.footnav {\n  display: flex;\n  justify-content: space-between;\n  flex-wrap: wrap;\n  gap: 1rem;\n}\n.footnav ul {\n  list-style: none;\n  display: flex;\n  gap: 1rem;\n}\n.footnav ul li a:hover {\n  text-decoration: underline;\n}\n\n\/* Responsiveness *\/\n@media (max-width: 600px) {\n  .search-form .buttons {\n    flex-direction: column;\n  }\n  .search-form .buttons button {\n    width: 100%;\n  }\n  .site-header .topnav ul {\n    justify-content: center;\n    padding: 0.5rem 1rem;\n  }\n}\n<\/pre><\/div>\n\n\n\n<p>You can copy these files locally, open <code>index.html<\/code> in your browser, and you\u2019ll have a functional, responsive UI clone of Google\u2019s search page (UI only\u2014no backend search functionality).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Enhancements &amp; Variations<\/h2>\n\n\n\n<p>Here are ways you can extend the clone and deepen your learning:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add icons<\/strong>: For the \u201cApps\u201d button use an SVG icon, for \u201cvoice search\u201d use a mic icon in the input field.<\/li>\n\n\n\n<li><strong>Hover\/Focus animations<\/strong>: Slight transitions on the search box, buttons.<\/li>\n\n\n\n<li><strong>Dark mode variant<\/strong>: Use darker background and lighter text, toggle with CSS <code>prefers-color-scheme<\/code>.<\/li>\n\n\n\n<li><strong>Search results page (UI only)<\/strong>: Add a <code>\/results.html<\/code> that mimics Google\u2019s search-results layout (left nav, results list, side panel). Repository example: google-homepage-clone (GitHub) built by another dev.<\/li>\n\n\n\n<li><strong>Add placeholder behavior<\/strong>: When input is focused, show suggestions (pure CSS or minimal JS).<\/li>\n\n\n\n<li><strong>Improve accessibility<\/strong>: Night-mode, better keyboard navigation, ARIA landmarks.<\/li>\n\n\n\n<li><strong>Use CSS custom properties (variables)<\/strong>: For theme colors and consistency.<\/li>\n\n\n\n<li><strong>Performance improvements<\/strong>: Use minimal CSS, inline critical styles, lazy-load images.<\/li>\n\n\n\n<li><strong>Branding\/Your own twist<\/strong>: Clone the layout but swap logo, colours, content for your own brand.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">7. Common Issues &amp; Debugging Tips<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Search box stretches too wide on large screens<\/strong>: Use <code>max-width<\/code> (e.g., 600px) and center with <code>margin: 0 auto<\/code>.<\/li>\n\n\n\n<li><strong>Flex container not centering vertically<\/strong>: Ensure parent has <code>height: 100vh<\/code> or <code>flex: 1<\/code> and html\/body height set appropriately. Example fix from StackOverflow: set <code>html, body { height: 100%; margin: 0; } section { height: 100vh; }<\/code>.<\/li>\n\n\n\n<li><strong>Buttons wrap awkwardly on mobile<\/strong>: Use media query to set <code>flex-direction: column<\/code> and full width.<\/li>\n\n\n\n<li><strong>Hover states not visible<\/strong>: Ensure contrast is sufficient (accessibility).<\/li>\n\n\n\n<li><strong>Logo image blurry or miss-scaled<\/strong>: Use intrinsic width\/height attributes and set display block.<\/li>\n\n\n\n<li><strong>Footer links too crowded<\/strong>: On small screens, wrap into two lines or stack vertically.<\/li>\n\n\n\n<li><strong>Accessibility issues<\/strong>: Use browser dev-tools (\u201cLighthouse\u201d in Chrome) to check contrast, semantic markup, ARIA labels.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">8. Frequently Asked Questions (FAQs)<\/h2>\n\n\n\n<p><strong>Q1. Can I use this clone commercially?<\/strong><br>A: This tutorial is for <strong>learning and portfolio<\/strong> use. If you replicate a brand like Google\u2019s page in full for commercial production, you must watch branding\/licensing considerations. But practicing UI clones is entirely fine.<\/p>\n\n\n\n<p><strong>Q2. Do I need JavaScript for this UI?<\/strong><br>A: For basic UI clone you don\u2019t. The code provided is pure HTML5 + CSS3. If you want search functionality or dynamic behaviour (suggestions, voice input), then you\u2019d add JS\u2014but that\u2019s beyond basic clone.<\/p>\n\n\n\n<p><strong>Q3. Why use semantic HTML tags like <code>&lt;main&gt;<\/code>, <code>&lt;header&gt;<\/code>?<\/strong><br>A: These improve readability, maintainability, accessibility (screen-readers) and help search engines understand page structure\u2014supporting E-E-A-T (Experience, Expertise, Authoritativeness, Trust).<\/p>\n\n\n\n<p><strong>Q4. How can I make the search page mobile-friendly?<\/strong><br>A: Use responsive design: Flexbox, media queries, sensible max-widths, stack columns on small screens, ensure tap-targets (buttons) are large enough, and test across devices. The example code includes a media query for max-width 600px.<\/p>\n\n\n\n<p><strong>Q5. Can I incorporate CSS Grid instead of Flexbox?<\/strong><br>A: Yes. CSS Grid is powerful, especially for more complex layouts. But for this simple centered layout, Flexbox is sufficient\u2014and simpler for beginners.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Cloning the Google search engine landing page UI using HTML5 and CSS3 is an excellent exercise that helps you build strong front-end fundamentals. You get to practise semantic markup, responsive layout, accessibility, clean styling, and best practices around SEO and performance.<\/p>\n\n\n\n<p>By following the steps above\u2014from folder setup, semantic HTML structure, CSS styling, responsiveness, accessibility, through to full source code\u2014you\u2019ll end up with a high-quality UI clone. Then you can <strong>customise<\/strong>, <strong>extend<\/strong>, or <strong>adapt<\/strong> it for your own projects.<\/p>\n\n\n\n<p>Once you\u2019re comfortable with this, try adding search suggestions, result pages, animations, or even a full theme variation. Each step deepens your skill set.<\/p>\n\n\n\n<p>Happy coding! If you run into any issues while building this, feel free to ask\u2014I\u2019d be glad to help.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll walk you through the full process\u2014structure, styling, responsiveness, accessibility, best practices, and complete source code\u2014so you can clone the UI (for learning or portfolio purposes) and understand how &#8230; <a title=\"How to Design Google Search Engine Landing Page UI Clone in HTML5 &#038; CSS3\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/\" aria-label=\"Read more about How to Design Google Search Engine Landing Page UI Clone in HTML5 &#038; CSS3\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3479","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Design Google Search Engine Landing Page UI Clone in HTML5 &amp; CSS3<\/title>\n<meta name=\"description\" content=\"Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Design Google Search Engine Landing Page UI Clone in HTML5 &amp; CSS3\" \/>\n<meta property=\"og:description\" content=\"Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-21T15:49:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-21T04:12:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"912\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Design Google Search Engine Landing Page UI Clone in HTML5 & CSS3","description":"Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll","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:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/","og_locale":"en_US","og_type":"article","og_title":"How to Design Google Search Engine Landing Page UI Clone in HTML5 & CSS3","og_description":"Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll","og_url":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-09-21T15:49:58+00:00","article_modified_time":"2025-10-21T04:12:21+00:00","og_image":[{"width":1920,"height":912,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/scrnli_itm216adL1moCa.png","type":"image\/png"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"How to Design Google Search Engine Landing Page UI Clone in HTML5 &#038; CSS3","datePublished":"2022-09-21T15:49:58+00:00","dateModified":"2025-10-21T04:12:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/"},"wordCount":1209,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/","url":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/","name":"How to Design Google Search Engine Landing Page UI Clone in HTML5 & CSS3","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-09-21T15:49:58+00:00","dateModified":"2025-10-21T04:12:21+00:00","description":"Want to build a sleek, minimalist landing page like Google\u2019s search engine home page using HTML5 and CSS3? You\u2019re in the right place. In this guide I\u2019ll","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/how-to-design-google-search-engine-landing-page-ui-clone-in-html5-css3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Design Google Search Engine Landing Page UI Clone in HTML5 &#038; CSS3"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3479"}],"version-history":[{"count":5,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3479\/revisions"}],"predecessor-version":[{"id":4112,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3479\/revisions\/4112"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}