Last active
May 15, 2018 09:21
-
-
Save AndFran/83e956210c2b1ad7a9939ccdaae3a94a to your computer and use it in GitHub Desktop.
HW - 01
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Andrew's FakeBook</title> | |
</head> | |
<body> | |
<h1>Fakebook</h1> | |
<h2>Andrew</h2> | |
<img src="http://byronbayphotographer.com/wp-content/uploads/2017/11/smartness-generic-person-image-john-y-s-musings-from-the-middle-you-look-just-like.jpg" alt="my photo"> | |
<br> | |
<label for="friends">Friends</label> | |
<select id="friends"> | |
<option value="person1">Person 1</option> | |
<option value="person2">Person 2</option> | |
<option value="person3">Person 3</option> | |
<option value="person4">Person 4</option> | |
</select> | |
<button>Add a friend</button> | |
<br> | |
<p><strong>City:</strong> Malaga</p> | |
<p><strong>Education:</strong>Uni UK</p> | |
<p><strong>Hobby:</strong> Cycling, taking the dog for a walk</p> | |
<label for="comment">Leave a comment</label> | |
<textarea id="comment"> | |
</textarea> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment