html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Shopping site in India: Shop Online for Mobiles, Books, Watches, Shoes and More - Amazon.in</title>
<link rel="shortcut icon" href="./assets/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./scss/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
</head>
<body>
<header>
<nav class="primary-nav">
<div class="pn-left">
<a href="./index.html">
<div class="pn-logo">
</div>
<span>.in</span>
</a>
<div class="pn-location">
<div class="pn-loc-icon">
</div>
<div class="pn-loc-text">
<p class="pn-loc-text-light">Delivering to Surat 395007</p>
<p class="pn-loc-text-dark">Updated Location</p>
</div>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@import url("../assets/fonts/fonts.css");
:root {
--swiper-navigation-top-offset: 10%;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
font-family: "Amazon Ember";
display: flex;
flex-direction: column;
min-height: 100vh;
}
header .primary-nav {
padding: 5px 0px;
display: flex;
align-items: center;
background-color: #131921;
color: #ffffff;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run