-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (41 loc) · 1.52 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
<html>
<head>
<title>Welcome</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div style="
width: 350px;
border: 1px solid #ebeaea;
margin: 90px auto;
padding: 10px;
border-radius: 10px;
box-shadow: 0 0 15px #cecece
">
<img style="width: 100%; border-radius: 10px 10px 0 0" src="image/astronaut.jpg" alt="gambar astronaut">
<h2>Cintara Surya Elidanto</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda impedit sed dignissimos doloribus</p>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-facebook"></i>
<table style="
border: 1px solid grey;
width: 100%;
text-align:center;
border-collapse:collapse;
margin-bottom: 10px
" cellpadding="5px">
<tr style="background-color: grey; color:white">
<th>Experience</th>
<th>Year</th>
</tr>
<tr>
<td>Develop Personal Website</td>
<td>2022</td>
</tr>
</table>
</div>
</body>
</html>