Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions Homepage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>Shop</title>
</head>
<body>
<header>
<section class="middleTabbar">
<button class="tabBarButtons">
Home Page
</button>
<button class="tabBarButtons">
Leggings
</button>
<button class="tabBarButtons">
TShirts
</button>
<button class="tabBarButtons">
Accessories
</button>
<button class="tabBarButtons">
shoppintList
</button>
</section>
</header>

<!-- This is images Section -->
<section class="middleBody">

<h1 style="text-align: center;
margin-top: 25px; text-decoration: underline;text-decoration-color: Red;">POPUALR CATEGORIES </h1>
<img src="https://static.nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5/5b27b722-285a-41dd-90b5-9a832db87218/go-lange-legging-met-hoge-taille-zakken-en-complete-ondersteuning-dames-pjFt88.png" , class="pictureSizes"/>
<img src="https://i5.walmartimages.com/asr/e4fac161-3b5d-4297-b196-38ea88a14281_1.a02d1921b804cec65dc8f8dd9af881e6.jpeg" , class="pictureSizes"/>
<a href="https://www.google.com/"> Go to www.Google.com </a>
<a href="./TShirt.html"> Go to TShirts</a>
</section>

</body>
</html>
42 changes: 42 additions & 0 deletions TShirt.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>Shop</title>
</head>
<body>
<header>
<section class="middleTabbar">
<button class="tabBarButtons">
Home Page
</button>
<button class="tabBarButtons">
Leggings
</button>
<button class="tabBarButtons">
TShirts
</button>
<button class="tabBarButtons">
Accessories
</button>
<button class="tabBarButtons">
shoppintList
</button>
</section>
</header>

<!-- This is images Section -->
<section class="middleBody">

<h1 style="text-align: center;
margin-top: 25px; text-decoration: underline;text-decoration-color: Red;">POPUALR CATEGORIES </h1>
<img src="https://static.nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5/5b27b722-285a-41dd-90b5-9a832db87218/go-lange-legging-met-hoge-taille-zakken-en-complete-ondersteuning-dames-pjFt88.png" , class="pictureSizes"/>
<img src="https://i5.walmartimages.com/asr/e4fac161-3b5d-4297-b196-38ea88a14281_1.a02d1921b804cec65dc8f8dd9af881e6.jpeg" , class="pictureSizes"/>
<a href="https://www.google.com/"> Go to www.Google.com </a>
<a href="./Homepage.html"> Go Back to HomePage</a>
</section>
</body>
</html>
13 changes: 0 additions & 13 deletions index.html

This file was deleted.

46 changes: 46 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

body {
background-color: #d3d3d2;
margin: auto;
}
header {
background-color: black;
height: 70px;
}

.middleTabbar{
margin: auto;
max-width: 650px;
}

.tabBarButtons{
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
height: 50px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 14px;
margin-right: 7px
}
.pictureSizes{
height: 540px;
width: 360px;
margin-left: 45px;
margin-right: 25px;
margin-top: 15px;
margin-bottom: 25px;
padding: 5px;
}
.middleBody{
margin: auto;
max-width: 910px;
}

a {
font-size: 25px;
font-style: italic;
margin-left: 45px;
}