26 lines
681 B
HTML
26 lines
681 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.center_div {
|
|
border: 1px solid gray;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 90%;
|
|
background-color: #d0f0f6;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
</style>
|
|
<link href="style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="center_div">
|
|
<h1>Hello Baeldung!</h1>
|
|
<img src="Java_logo.png">
|
|
|
|
<div class="myclass">
|
|
<p>This is the tutorial to convert html to pdf.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |