-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 5.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Project created by Taj English for freecodecamp">
<meta name="author" content="Taj English">
<link rel="icon" href="/favicon.ico">
<title>Zuckerberg Tribute</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Main View -->
<div class="container">
<div id="bodyWell" class="well">
<!-- Bootstrap Box -->
<div id="headWell" class="well">
<h1 class="text text-center">Tribute Page To Mark Zuckerberg</h1>
</div>
<div id="mainWell" class="well">
<div id="mainTextWell" class="well">
<h3 class="text text-center">The man who connected the world!</h3>
</div>
<img id="zuckPic1" class="img-responsive img-rounded center-block" src="http://www.dailywire.com/sites/default/files/uploads/2016/02/mark-zuckerberg1.jpg" alt="Mark">
</div>
<h3 class="text-primary">Here's a time line of Mark's life:</h3>
<div class="panel panel-primary">
<ul>
<li>1984 – Born in White Plains, New York, the only son of a dentist and psychiatrist (he has three sisters).</li>
<li>2002 – Graduates from Phillips Exeter Academy, a private school in New Hampshire; joins Harvard University in autumn on a psychology and computer science course.</li>
<li>2003 – Launches Facemash - a web programme enabling Harvard students to compare images of same-gender students and rate the more attractive - and nearly gets kicked out when its immediate popularity draws the attention of the university
administrators.</li>
<li>2004 – Starts Thefacebook.com in February.</li>
<li>2004 – Drops out of Harvard at the end of his sophomore year; moves to Palo Alto that summer, where he rents a house with a now-famous swimming pool (and zip-wire).</li>
<li>2004 – Facebook hits 200,000 users; contacts venture capitalists in Silicon Valley, and receives an initial investment of half a million dollars - some of which is used to splash out on a small office above a Chinese restaurant</li>
<li>2004 – The Winklevoss twins file a lawsuit against Zuckerberg claiming he ripped off their idea for a new social network, HarvardConnection (later ConnectU).</li>
<li>2005 – Facebook hits 5 million users.</li>
<li>2006 – At 22 years of age, Zuckerberg turns down an estimated $1 billion dollar offer for Facebook from Yahoo.</li>
<li>2007 – Opens Facebook beyond universities so anyone with an email address can join; turns down a $15 billion offer from Microsoft, which would have bagged him personally $4 billion.
</li>
<li>2007 – Allows independent developers to write programmes for Facebook; but is forced to apologise when Beacon, a controversial new addition to Facebook allowing users to view what their friends have been buying online, raises major
complaints over privacy intrusion.
</li>
<li>2008 – Reaches a settlement with Winklevoss lawsuit worth $65 million, though still denies any intellectual property theft.
</li>
<li>2009 – China blocks domestic access to Facebook.</li>
<li>2010 – Named Time magazine’s person of the year.
</li>
<li>2010 – Hollywood movie The Social Network is released documenting Zuckerberg's time at Harvard and the early days of Facebook.
</li>
<li>2011 – Appears on Saturday Night Live along with host Jesse Eisenberg, who played him in the film.
</li>
<li>2011 – Facebook records half a billion users on Facebook in a single day, and is expected to report $4 billion dollars revenue, double that of the previous year.
</li>
<li>2012 – Facebook projected to reach 1 billion users; a much-mooted stock market flotation would be expected to earn as much as $100 billion.
</li>
</ul>
</div>
<h4 class="text-primary">Check out the rest of Mark's life on his <a href="https://en.wikipedia.org/wiki/Mark_Zuckerberg" target="_blank">Wiki Page.</a></h4>
</div>
<!-- Footer -->
<div class="panel text-center ">
<div class="panel-footer"><span id = "footerText">Writen and coded by </span><a href="https://www.freecodecamp.com/itajenglish" target="_blank">Taj English</a></div>
</div>
</div>
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>