Skip to content
Open
19 changes: 18 additions & 1 deletion Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,24 @@
<h1>Product Pick</h1>
</header>
<main>
<form>
<form class="form">
<div class="checkbox">
<label for="accept">I Accept</label>
<input type="checkbox" name="gender" id="accept">
</div>
<div class="email">
<label for="email">Email</label>
<input type="text" name="email" id="email" required>
</div>
<div>
<div class="color">
<label for="color">Choose Your Color</label>
<input type="color" name="color" id="color">
</div class="date">
<label for="date"> Choose Your Delivery Date</label>
<input type="date" name="date" id="date" min="09-10-2024">
</div>
<button id="btn">Submit</button>
<!-- write your html here-->
<!-- try writing out the requirements first-->
</form>
Expand Down
28 changes: 28 additions & 0 deletions Form-Controls/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.form{
display: flexbox;
justify-items:self-start;
text-align: center;
border:20px solid red ;
padding: 50px 50px;
}
#btn{
background-color:green;
font-size: x-large;
margin-top: 40px;
}
.checkbox{
margin-bottom: 20px;
font-size: large;
}
.email{
margin-bottom: 20px;
}
.color{
margin-bottom: 20px;
}

64 changes: 64 additions & 0 deletions Wireframe/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/* General page styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-size: cover;
background-color: silver;
}

header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem 0;

}

h1 {
margin: 0;
font-size: 2.5em;
}
article {
background-color: #e0ffe0;
padding: 2rem;;
border: 2px solid #ccc;
border-color:#4CAF50;
margin: 1rem 22rem;
}

/* Styling first article differently */
article:first-child {
background-color: #e0ffe0;
border-color: #4CAF50;
margin: 2.2rem 12.5rem;
padding: 2.2rem;
}

h2 {
color: #333;
margin-top: 0;
}

a {
color: #4CAF50;
text-decoration: none;
font-weight: bold;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 2.5rem;
position: fixed;
width: 100%;
bottom: 0;
height: 1.5rem;
}
44 changes: 36 additions & 8 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<title>What is Git?</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>What is Git?</h1>
<p>Learn about Git, its uses, and the concept of branches.</p>
</header>
<!-- Article 1 - First-child styled differently -->
<article>
<h2>What is Git?</h2>
<p>Git is a version control system that helps track changes to files and enables collaboration.</p>
<a href="#">Read More</a>
</article>
<!-- Article 2 -->
<article>
<h2>Why do Developers Need Git?</h2>
<p>Git helps developers manage code versions, collaborate on projects, and track changes efficiently.
</p>
<a href="#">Read More</a>
</article>
<!-- Article 3 -->
<article>
<h2>What is a Branch in Git?</h2>
<p>A branch in Git is a pointer to a commit, allowing parallel development.</p>
<a href="#">Read More</a>
</article>
<!-- Footer -->
<footer>
<p>© 2024 Amirhossein Aminian</p>
</footer>

</body>
</html

</html>
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<div>
git add .
git commit -m "Set up initial skeleton layout for wireframe"

</div>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wireframe Page</title>
</head>
<body class="body">
<header>
<!-- Header content like logo, title -->
</header>

<nav>
<!-- Navigation menu -->
</nav>

<main>
<!-- Main content section -->
</main>

<footer>
<!-- Footer section -->
</footer class="text">
</body>
</html>