Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Week1_Venum_Dharani #14

Open
wants to merge 6 commits into
base: week1_assignment
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add files via upload
Dharani-Venum authored Dec 22, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1c96daefe10d926c2c4c8066d27833559c952dd5
6 changes: 6 additions & 0 deletions week_1/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
form { display: table; }
p { display: table-row; }
label { display: table-cell; }
input { display: table-cell; }


85 changes: 85 additions & 0 deletions week_1/week01.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html>
<head>
<title>week01</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>

<h1>My Guest Book</h1>
<p>Please sign my guest book. Thanks!</p>
<br>
<form>
<p>
<label for="a"><b>What is your name?</b></label>
<input id="a" type="text">
</p>
<br>
<p>
<label for="b"><b>What is your email address?</b></label>
<input id="b" type="email">
</p>
<br>
<p>
<label for="check"><b>Please check all that apply:</b></label>
<input type="checkbox" value="I really like your website">I really like your website
<br>
<input type="checkbox" value="One of the best sites I've seen">One of the best sites I've seen
<br>
<input type="checkbox" value="I sure wish my site looked as good as yours">I sure wish my site looked as good as yours
<br>
<input type="checkbox" value="I've no taste and I'm pretty dense, so your site didn't do much for me
">I've no taste and I'm pretty dense, so your site didn't do much for me


</p>
<br>


<p>
<label for="best"><b>Choose the one thing that you love best about my website?</b></label>
<input type="radio" name="love" value="The gorgeous picture of you">The gorgeous picture of you
<br>
<input type="radio" name="love" value="All the beautiful pictures of your cats">All the beautiful pictures of your cats
<br>
<input type="radio" name="love" value="The inspiring recap of your suburban childhood">The inspiring recap of your suburban childhood
<br>
<input type="radio" name="love" value="The detailed list of all your Elvis memorabilia's">The detailed list of all your Elvis memorabilia's


</p>
<br>
<p>
<label for="book"><b>If my website were a book, how many copies would it sell?</b></label>
<br>
<select id="book" name="book" size="3" multiple>
<option value="Millions, for sure">Millions, for sure</option>
<option value="100,00+ (would be Orphan's favorite">100,00+ (would be Orphan's favorite)</option>
<option value="Thousands (an under appreciated classic)">Thousands (an under appreciated classic)</option>

</select>
</p>
<br>
<p>
<label for="website"><b>How can I improve my website?</b></label>
<select id="website" name="website">
<option value="couldn't be better">couldn't be better</option>
<option value="could have used more styles">could have used more styles</option>
<option value="could have used bootstrap">could have used bootstrap</option>

</select>
</p>
<br>

<p>
<label for="text"><b>Feel free to type more praise, gift offers, etc, below:</b></label>
<br>
<textarea id="text" name="text" rows="5" cols="50"></textarea>
</p>
<br>
<input type="submit" value="Click Here to Submit">
<input type="reset" value="Erase and start over">
</form>

</body>
</html>
85 changes: 85 additions & 0 deletions week_1/week01.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html>
<head>
<title>week01</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>

<h1>My Guest Book</h1>
<p>Please sign my guest book. Thanks!</p>
<br>
<form>
<p>
<label for="a"><b>What is your name?</b></label>
<input id="a" type="text">
</p>
<br>
<p>
<label for="b"><b>What is your email address?</b></label>
<input id="b" type="email">
</p>
<br>
<p>
<label for="check"><b>Please check all that apply:</b></label>
<input type="checkbox" value="I really like your website">I really like your website
<br>
<input type="checkbox" value="One of the best sites I've seen">One of the best sites I've seen
<br>
<input type="checkbox" value="I sure wish my site looked as good as yours">I sure wish my site looked as good as yours
<br>
<input type="checkbox" value="I've no taste and I'm pretty dense, so your site didn't do much for me
">I've no taste and I'm pretty dense, so your site didn't do much for me


</p>
<br>


<p>
<label for="best"><b>Choose the one thing that you love best about my website?</b></label>
<input type="radio" name="love" value="The gorgeous picture of you">The gorgeous picture of you
<br>
<input type="radio" name="love" value="All the beautiful pictures of your cats">All the beautiful pictures of your cats
<br>
<input type="radio" name="love" value="The inspiring recap of your suburban childhood">The inspiring recap of your suburban childhood
<br>
<input type="radio" name="love" value="The detailed list of all your Elvis memorabilia's">The detailed list of all your Elvis memorabilia's


</p>
<br>
<p>
<label for="book"><b>If my website were a book, how many copies would it sell?</b></label>
<br>
<select id="book" name="book" size="3" multiple>
<option value="Millions, for sure">Millions, for sure</option>
<option value="100,00+ (would be Orphan's favorite">100,00+ (would be Orphan's favorite)</option>
<option value="Thousands (an under appreciated classic)">Thousands (an under appreciated classic)</option>

</select>
</p>
<br>
<p>
<label for="website"><b>How can I improve my website?</b></label>
<select id="website" name="website">
<option value="couldn't be better">couldn't be better</option>
<option value="could have used more styles">could have used more styles</option>
<option value="could have used bootstrap">could have used bootstrap</option>

</select>
</p>
<br>

<p>
<label for="text"><b>Feel free to type more praise, gift offers, etc, below:</b></label>
<br>
<textarea id="text" name="text" rows="5" cols="50"></textarea>
</p>
<br>
<input type="submit" value="Click Here to Submit">
<input type="reset" value="Erase and start over">
</form>

</body>
</html>