Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SriMethan authored Sep 17, 2024
0 parents commit 2995623
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 0 deletions.
45 changes: 45 additions & 0 deletions feedback.html
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>
Binary file added image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions index.css
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;
}
22 changes: 22 additions & 0 deletions index.html
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>
22 changes: 22 additions & 0 deletions portfolio.html
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>

0 comments on commit 2995623

Please sign in to comment.