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
Empty file removed .github/.keep
Empty file.
34 changes: 0 additions & 34 deletions README.md

This file was deleted.

Empty file removed assets/css/style.css
Empty file.
15 changes: 15 additions & 0 deletions homework/albert.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-color: rgb(220,220,230);
}
h1,h2,img{
margin-left: 500px;
}
div{
width: 900;

}
18 changes: 18 additions & 0 deletions homework/albert.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="albert.css">
</head>
<body>
<div>
<h1>Albert Einstein</h1>
<h2>(E=mc)</h2>
<img src="sekil.jpg" alt="sa">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. In quidem temporibus a cupiditate maxime delectus. Possimus, debitis assumenda cupiditate nulla eum nostrum aliquam est aperiam minima hic omnis ratione perferendis repudiandae maxime, illum ab atque et fugit qui exercitationem cumque dolorum. Totam, voluptatum aliquam. Corporis odit veritatis perspiciatis distinctio vel? Optio consequuntur temporibus libero a nostrum, labore asperiores nobis ab iusto vel neque rerum voluptas debitis autem, facere nesciunt. Adipisci veritatis accusamus amet veniam enim nemo hic recusandae, quia eaque magnam eligendi, doloribus laudantium molestias harum dolores maxime blanditiis. Vitae sunt eos voluptatum delectus commodi unde, eius sed, perferendis non dolor nostrum architecto. Placeat tempora dolor nam officiis nesciunt cum. Voluptates quaerat beatae, sed modi perspiciatis soluta! Facilis nulla laboriosam maxime accusantium labore consectetur, rem dicta asperiores, neque, modi quam! Architecto, unde, vel consequuntur qui dolorum fugiat voluptas impedit adipisci nostrum aperiam rerum nobis nulla maiores dicta sed itaque magni.</p>
</div>
</body>
</html>
88 changes: 88 additions & 0 deletions homework/indexx.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1>Application For Permission To Date My Daughter</h1> <br> <br>
<p> <strong>Note:</strong> Form is to be completed at least 21 days prior to date</p>
<fieldset>
<legend>Personal Details</legend><br>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter name here"> <br> <br>
<label for="adress">Adress: </label>
<input type="text" id="adress" placeholder="Enter address here"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter email here"><br><br>
<label for="phone">Phone Number:</label>
<input type="number" id="phone" placeholder="Enter 10 digit number"><br><br>
<label for="iq"> IQ:</label>
<input type="number" id="iq" placeholder="Enter IQ here"><br><br>
<label for="gend">Gender:</label><br><br>
<label for="male"> Male</label>
<input type="radio" id="male"><br><br>
<label for="fmale"> Female</label>
<input type="radio" id="fmale"><br><br>
<label for="other"> Other</label>
<input type="radio" id="other"><br><br>
<label for="dt">Date of Proposed Outing:</label>
<input type="date" id="dt"><br>


</fieldset><br>
<fieldset>
<h3>Check All That Apply</h3>

<input type="checkbox" id="bir">
<label for="bir">I have tattoos and/or piercings</label><br>

<input type="checkbox" id="iki">
<label for="iki">I am more than 2 years older than my daughter</label><br>

<input type="checkbox" id="uc">
<label for="uc">I own a panel van or v8 ute</label><br>

<input type="checkbox" id="dord">
<label for="dord">I work full-time</label><br>

<input type="checkbox" id="bes">
<label for="bes">My parents are rich</label><br>

<input type="checkbox" id="alti">
<label for="alti">Is the date at a well lit public location</label>

</fieldset><br>
<fieldset>
<label for="per">Politicial Persuasion:</label>
<select name="per" id="per">
<option value="Left Wing">Left Wing</option>
<option value="Right Wing">Right Wing</option>
</select>
<label for="education">Education Level Completed</label>
<select name="edu" id="edu">
<option value="edu">University</option>
<option value="edu">School</option>
<option value="edu">Primary</option>
</select>

</fieldset><br>
<fieldset>
<legend>Essay Section</legend>
<h5>In 50 words or more explain why you want to date my daughter</h5>
<textarea name="tex" id="tex" cols="30" rows="4"></textarea>
<h5> Please upload contact details for 2 references</h5>
<textarea name="tex1" id="tex1" cols="30" rows="4"></textarea>
<h5>Upload Police Clearance Certificate,Bank Statement and Medidal Certificates here: <span>Attach Files</span></h5>

</fieldset><br><br>

<span id="sp">Send Your Application</span>
</div>

</body>
</html>
35 changes: 35 additions & 0 deletions homework/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
background-color:rgb(249,250,210) ;
}
div{
height: 1100px;
width: 900px;
background-color: white;
margin:auto;
border: 1px solid black;
border-radius: 5px;
}
h1{
padding-left: 185px;
font-size: 20px;
}
p{
font-size: 25px;
}

fieldset{
margin:5px;
}
span{
background-color: red;
color: white;

}
#sp{
margin: 350px;
}