It's free and you have access to premium codes!
Welcome back! Please login to your account.
Don't worry, we'll send you a message to help you to recover your acount.
Please check your email for instructions to activate your account.
Written by 1 March 2021
To separate the contents in a page, you need some type of dividers. One idea is to combine such dividers with headings and add lines besides the title. In the following code example, we have shown how to combine headings and separators.
<!-- this script is provided by https://www.htmlfreecode.com coded by: Kerixa Inc. -->
<style>
body {
margin: 40px;
}
.divider {
display: flex;
}
.divider:before, .divider:after {
content: "";
flex: 1;
}
.line {
align-items: center;
margin: 1em -1em;
}
.line:before, .line:after {
height: 1px;
margin: 0 1em;
}
.one-line:before, .one-line:after {
background: black;
}
.razor:before, .razor:after {
box-shadow: 0 0.5px 0 black;
}
.double-razor:before, .double-razor:after {
height: 3px;
box-shadow: 0 -0.5px 0 black, 0 0.5px 0 black;
border-width: 0;
}
.glow:before, .glow:after {
height: 6px;
-webkit-filter: blur(5px);
border-radius: 5px;
}
.glow:before {
background: linear-gradient(to right, blue, hotpink);
}
.glow:after {
background: linear-gradient(to left, blue, hotpink);
}
.gradient {
align-items: stretch;
margin: 1em 0;
height: 2em;
line-height: 2em;
color: white;
background: black;
}
.gradient:before {
background: linear-gradient(to right, white, black);
}
.gradient:after {
background: linear-gradient(to left, white, black);
}
.donotcross {
overflow: hidden;
align-items: center;
background: #ffd500;
color: black;
height: 2em;
line-height: 2em;
}
.donotcross:before, .donotcross:after {
background: white;
padding: 50px 0;
height: 0;
transform: rotate(45deg);
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<h2 class="divider line one-line" contenteditable>Simple 1px</h2>
<h2 class="divider line razor" contenteditable>Razor Line 0.5px</h2>
<h2 class="divider line double-razor" contenteditable>Double 0.5px</h2>
<h2 class="divider line glow" contenteditable>Light Saber</h2>
<h2 class="divider gradient" contenteditable>Gradient Heading</h2>
<h2 class="divider donotcross" contenteditable>Do Not Cross</h2>
<font face="Tahoma"><a target="_blank" href="http://www.htmlfreecode.com/"><span style="font-size: 8pt; text-decoration: none">HTML Free Code</span></a></font>
<a target='_blank' href='https://www.htmlfreecode.com' style='font-size: 8pt; text-decoration: none'>Html Free Codes</a>
Comments
Here you can leave us commments. Let us know what you think about this code tutorial!