Skip to content

Instantly share code, notes, and snippets.

@AndFran
Last active May 15, 2018 09:21
Show Gist options
  • Save AndFran/83e956210c2b1ad7a9939ccdaae3a94a to your computer and use it in GitHub Desktop.
Save AndFran/83e956210c2b1ad7a9939ccdaae3a94a to your computer and use it in GitHub Desktop.
HW - 01
<!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