-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (80 loc) · 2.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<div class="container">
</div>
<html>
<head>
<meta charset="utf-8">
<title>Profile</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="card">
<img src="images/Sky.jpg" alt="sky logo" width="100" height="100">
<h1> Neal Sutaria </h1>
<h2> Student in Lewagon </h2>
<p> Coding seems interesting, so I joined the bootcamp. </p>
</div>
<div class="card">
<ul class = "list-inline">
<li> <a href = "https://www.facebook.com"> <i class="fa fa-facebook"> </i> <br> Facebook </a> </li>
<li> <a href = "https://www.twitter.com"> <i class="fa fa-twitter"> </i> <br> Twitter </a> </li>
<li> <a href = "https://www.linkedin.com"> <i class="fa fa-linkedin"> </i> <br> Linkedin </a> </li>
</ul>
</div>
<div class="card">
<h2> My favorite Movies </h2>
<table id = "movies">
<tbody>
<tr>
<td>
<img src="images/avengers.jpg" alt="avengers logo" width="100" height="100">
</td>
<td>
<h3>Avengers Infinity War</h3>
<p>The avengers try to stop Thanos from destroying the world.</p>
</td>
</tr>
<tr>
<td>
<img src="images/ddlj-poster.jpg" alt="ddlj logo" width="100" height="100">
</td>
<td>
<h3> DDLJ </h3>
<p> Two people meet and they fall in love, but some obstacles come in their way when trying to marry. </p>
</td>
</tr>
<tr>
<td> <img src="images/harry_potter.jpeg" alt="harry potter logo" width="100" height="100"> </td>
<td>
<h3> Harry Potter</h3>
<p> A wizard is the chosen one and must stop Voldemort, the most evil wizard. </p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="card">
<h2> About this page </h2>
This page has been coded during the <a href="https://lewagon.com/program" target="_blank">FullStack program @LeWagon</a>. It was a good experience.
<ul class = "list-inline">
<li>
<a href="#">
<i class="fa fa-heart"></i>
</a>
</li>
<li> <a href="#">
<i class="fa fa-share"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-star"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>