Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

London_Class_10 -Mehmet_Omer_Demir -HTML-CSS-Challenges #262

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
52 changes: 51 additions & 1 deletion Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,64 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Product Pick</h1>
</header>
<main>
<form>
<p id="description">Chosee your clothes</p>
<form id="survey-form">
<div class="form-control">
<label id="name-label">Name:
<input id="name" type="text" placeholder="enter your name" required />
</label>
</div>
<div class="form-control">
<label id="email-label">Email:
<input id="email" type="email" placeholder="your email adress" required />
</label>
</div>
<form id="survey-form"></form>
<p>What is your favorite color for T-Shirt?</p>
<div class="form-control">
<label class="blue">Blue
<input type="radio" name="redio-group" value="Blue" />
</label>
<label class="yellow">Yellow
<input type="radio" name="redio-group" value="Yellow" />
</label>
<label class="orange">Orange
<input type="radio" name="redio-group" value="Orange" />
</label>
</div>
<!-- write your html here-->
<!-- try writing out the requirements first-->
<p>What size would you like?</p>
<div class="form-size">
<label>XS
<input type="radio" name="color" value="Blue" />
</label>
<label>S
<input type="radio" name="color" value="Yellow" />
</label>
<label>M
<input type="radio" name="color" value="Orange" />
</label>
<label>L
<input type="radio" name="color" value="Yellow" />
</label>
<label>XL
<input type="radio" name="color" value="Orange" />
</label>
<label>XXL
<input type="radio" name="color" value="Orange" />
</label>
</div>
<div class="date">
<label id="date">Email:
<input id="date" type="date" placeholder="delivery date" required value="2023-01-24" min="2023-01-25" max="2023-02-09"/>
</label>
</div>
</form>

</main>
Expand Down
61 changes: 61 additions & 0 deletions Form-Controls/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@


p.description{
color: #da9137;
}

h1{
text-align: center;
font-family: fantasy;
font-size: 50px;
}


.form-control ,p{
font-family: fantasy;
font-size: 20px;

}

body{
background-image: url("https://images.pexels.com/photos/1884584/pexels-photo-1884584.jpeg");
background-size: cover;
background-repeat: no-repeat;}

.yellow{
background-color:#f9e507;
color: rgb(72, 64, 64);
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
padding: 10px 30px;
border-radius: 30px;
transition: .4s;
}

.blue{
background-color:#404adb;
color: white;
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
padding: 10px 30px;
border-radius: 30px;
transition: .4s;
}

.orange{
background-color:#da9137;
color: white;
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
padding: 10px 30px;
border-radius: 30px;
transition: .4s;
}

.date ,.form-size ,.form-control, p{
text-align: center;
}

3 changes: 0 additions & 3 deletions README.md

This file was deleted.

42 changes: 0 additions & 42 deletions Two-Truths-One-Lie/README.md

This file was deleted.

24 changes: 0 additions & 24 deletions Two-Truths-One-Lie/index.html

This file was deleted.

Binary file removed Two-Truths-One-Lie/laptop.png
Binary file not shown.
Binary file removed Two-Truths-One-Lie/moto-g4.png
Binary file not shown.
33 changes: 0 additions & 33 deletions Two-Truths-One-Lie/styles.css

This file was deleted.

67 changes: 0 additions & 67 deletions zoo-css-challenge/README.md

This file was deleted.

Loading