-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2995623
Showing
5 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title> Home </title> | ||
</head> | ||
<body> | ||
<center> <h2>PORTFOLIO</h2> </center> | ||
<hr> | ||
<ul> | ||
<li><a href="index.html">HOME</a></li> | ||
<li><a href="portfolio.html">PORTFOLIO</a></li> | ||
<li><a href="feedback.html">FEEDBACK</a></li> | ||
</ul> | ||
<form action="/action_page.php" method="get" target="_blank"> | ||
<label for="fname"> First Name -</label> | ||
<input type="text" name="fname" id="fname"> | ||
<br> | ||
|
||
<label for="lname"> Last Name -</label> | ||
<input type="text" name="lname" id="lname"> | ||
<br> | ||
<label for="dob"> Date Of Birth -</label> | ||
<input type="date" name="dob" id="dob"> | ||
<br> | ||
<label for="gen"> Gender -</label> | ||
<input type="radio" id="male" name="gen" value="MALE"> | ||
<label for="male"> Male </label> | ||
<input type="radio" id="female" name="gen" value="FEMALE"> | ||
<label for="female"> Female </label> | ||
<br> | ||
<label for="sub"> Please Select Your All Subjects </label> | ||
<br> | ||
<input type="checkbox" id="sub1" name="sub1" value="web"> | ||
<label for="sub1"> Web Developing </label> | ||
<input type="checkbox" id="sub2" name="sub2" value="ds"><label for="sub2"> Data Structures </label> | ||
<input type="checkbox" id="sub3" name="sub3" value="stat"><label for="sub3"> Statics and Mathematics </label> | ||
<br> | ||
<label for="comment"> Please Comment Your Ideas About the Course -</label> | ||
<br> | ||
<textareaname="comment" rows="6" Cols="60"> </textarea> | ||
<br> <br> | ||
<input type="submit"> | ||
<input TYPE="reset"> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
body { | ||
background-color: #add8e6; | ||
} | ||
h1 { | ||
font-family:'BrushScript MT', cursive; | ||
} | ||
ul{ | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
overflow: hidden; | ||
background-color: #dddddd;} | ||
|
||
li { | ||
float: left; | ||
} | ||
li a { | ||
display: block; | ||
padding: 8px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="index.css"> | ||
<title> Home </title> | ||
</head> | ||
<body> | ||
<center> | ||
<h1>WELCOME TO MY WEBSITE</h1> | ||
</center> | ||
<hr> | ||
<ul> | ||
<li><a href="index.html">HOME</a></li> | ||
<li><a href="portfolio.html">PORTFOLIO</a></li> | ||
<li><a href="feedback.html">FEEDBACK</a></li> | ||
</ul> | ||
<img src="image.png" alt="image.com" width="50%" height="50%"> | ||
<p>Developing writers can often benefit from examining an essay, a paragraph, or even a sentence to determine what makes it effective. | ||
On the following pages are several paragraphs for you to evaluate on your own, along with the Writing Center's explanation. | ||
<p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html > | ||
<head> | ||
<title> Home </title> | ||
</head> | ||
<body> | ||
<center> <h2>PORTFOLIO</h2> </center> | ||
<hr> | ||
<ul> | ||
<li><a href="index.html">HOME</a></li> | ||
<li><a href="portfolio.html">PORTFOLIO</a></li> | ||
<li><a href="feedback.html">FEEDBACK</a></li></ul> | ||
|
||
<p>HTML is the standard markup language used to display documents in a web browser. | ||
First developed by Tim Berners Lee in 1990 while working at the European Organization for Nuclear Research (CERN), HTML was one of the key innovative technologies used to publish the world’s first website on August 6, 1991. | ||
Thanks to a restoration project by CERN, you can now revisit the original website. Since that time, HTML has been significantly updated and expanded but its basic purpose to format and structure web pages remains the same. | ||
Today, HTML is one of many tools used to build the web. Knowing how to write HTML will provide a strong foundation for your career as a web designer and prepare you to learn additional front-end web development skills like CSS and JavaScript. | ||
<p> | ||
|
||
</body> | ||
|
||
</html> |