Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added DSC00045.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added INDANA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 0 additions & 7 deletions index.css

This file was deleted.

62 changes: 33 additions & 29 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<title>Halo ICl</title>
</head>
<body>
<h1>Halo ICL!</h1>
<h3>Data Asisten ICL 2018</h3>
<table>
<tr>
<th>Nama</th>
<th>Kota</th>
<th>Hobi</th>
</tr>
<tr>
<td>Febrio Akbar</td>
<td>Tangerang Selatan</td>
<td>Bernyanyi</td>
</tr>
<tr>
<td>Aliya Qurrota</td>
<td>Jember</td>
<td>Melukis</td>
</tr>
</table>
</body>
</html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootcamp-day3</title>
<link rel="stylesheet" href="./stylesheet.css">
</head>
<body>
<div class="container0">
<div class="container1">
<div class="container2">
<img class="fotoheader" src="./DSC00045.JPG" alt="iclpeeps">
</div>
<div class="containerheadline">
<div class="containerprofil">
<img class="fotoprofil" src="./INDANA.png" alt="profilepict">
</div>
<p class="teksheading">ICL PEEPS, HAII!!?</p>
</div>
<div class="container3">
<div class="container4">
<p class="teks1">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse commodo arcu quis volutpat molestie. Curabitur ultricies, est eu tincidunt elementum, mauris lectus interdum lacus, a accumsan purus nisi sed tortor. Nulla varius magna sed malesuada volutpat. Aliquam id volutpat orci.</p>
</div>
<div class="part"></div>
<div class="container5">
<p class="teks1">Ut euismod pretium lectus, sed gravida sem egestas non. Maecenas tempor dapibus sapien, elementum porttitor risus. Aenean tristique risus ac placerat rutrum. Donec quis dui sit amet nisl gravida consectetur sit amet sed ex. Proin sollicitudin sem eros, a rhoncus purus gravida id. Quisque consectetur rhoncus dui eget varius.</p>
</div>
</div>
</div>

</div>
</body>
</html>
93 changes: 93 additions & 0 deletions stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
*{
margin: 0;
font-family: Verdana, Tahoma, sans-serif;
}
.container0 {
background-color: #2b3f46;
width: 90%;
height: 100%;
margin: auto;
padding-top: 2.5%;
padding-bottom: 2.5%;
}

.container1{
background-color: blue;
width: 95%;
height: 100%;
margin: auto;
}

.container2{
height: auto;
width: 100%;
background-color: #384e57;
}

.fotoheader{
height: 100%;
width: 100%;
}

.containerheadline{
background-color: #2b3f46;
width: 100%;
height: 85px;
display: flex;
flex-direction: row;
}

.container3{
width: 100%;
height: 300px;
background-color: #2b3f46;
display: flex;
flex-direction: row;
}

.container4{
height: 100%;
width: 45%;
background-color: #384e57;
}

.container5{
height: 100%;
width: 45%;
align-items:flex-end;
background-color: #384e57;
}

.containerprofil{
margin-top: 10px;
height: 65px;
width: 65px;
border-radius: 50%;
background-color: #4f7786;
}

.fotoprofil{
height: 100%;
width: 100%;
border-radius: 50%;
}

.teksheading{
margin-top: 24px;
margin-left: 16px;
font-weight: bold;
font-size:x-large;
color: white;
}
.part{
width: 10%;
height: 100%;
background-color: #2b3f46;

}

.teks1{
color: white;
text-align: justify;
padding: 12px;
}