Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> h1 { font-family: sans-serif; margin: 100px auto; text-align: center; color: black; font-size: 40px; max-width: 600px; position: relative; } h1:before { content: ""; display: block; width: 150px; height: 5px; background: #CD5C5C; left: 85px; top: 50%; position: absolute; } h1:after { content: ""; display: block; width: 150px; height: 5px; background: #CD5C5C; right: 85px; top: 50%; position: absolute; } </style> </head> <body> <h1>Hello!</h1> </body> </html>