-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: fix because beautify not works
- Loading branch information
Showing
1 changed file
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
|
||
<title>PostHTML</title> | ||
|
||
<link rel="stylesheet" href="index.css"> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>PostHTML</title> | ||
<link rel="stylesheet" href="index.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<h1 class="header__title">PostHTML Example</h1> | ||
</header> | ||
|
||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<h1 class="header__title">PostHTML Example</h1> | ||
</header> | ||
<main class="main"> | ||
<div style="background: #fff;" class="content"> | ||
<h1 style="font-size: 3em;" class="content__title">Title</h1> | ||
<p style="color: red;" class="content__text content__text--red">Text</p> | ||
</div> | ||
</main> | ||
</div> | ||
<main class="main"> | ||
<div style="background: #fff;" class="content"> | ||
<h1 style="font-size: 3em;" class="content__title">Title</h1> | ||
|
||
<script src="index.js"></script> | ||
</body> | ||
<p style="color: red;" class="content__text content__text--red">Text</p> | ||
</div> | ||
</main> | ||
</div> | ||
|
||
<script src="index.js"></script> | ||
</body> | ||
</html> |