-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (44 loc) · 1.67 KB
/
index.html
File metadata and controls
57 lines (44 loc) · 1.67 KB
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
<html>
<head>
<meta charset="utf-8">
<title> My Profile Page</title>
<link href="https://fonts.googleapis.com/css?family=Gaegu|Lora|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="section">
<img src="images/profile-blank.png" class="image_circle" alt="Profile Photo" >
<h1>Alice Chen</h1>
<h2>Sophomore student @ Duke University</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
<a href="#" class="btn">Explore more</a>
</div>
<div class="section">
<ul>
<li><a href="#"><i class="fab fa-facebook-f"></i>Facebook</a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i>Linkedin</a></li>
<li><a href="#"><i class="fab fa-instagram"></i>Instagram</a></li>
</ul>
</div>
<div class="section">
<h2>Favorite Movies</h2>
<table>
<tbody>
<tr>
<td>
<img src="images/3_days.jpg" class="picture" alt="3_days movie cover">
</td>
<td>
<img src="images/hope.jpg" class="picture" alt="hopes movie cover">
</td>
<td>
<img src="images/lover.jpg" class="picture" alt="lover movie cover">
</td>
<td> </td>
</tr>
</tbody>
</table>
</div>
</body>
</html>