Never let people pick or make decisions for you as you will end up regretting it later on in life whether that decision is what career you want to work in or what phone you think is best for you make sure you always ask yourself is this decision i want to take ? is this the best decision for me ? Living in regret is not a nice thing you constantly think about it for me it eats at you constantly think why did i make such a decision.
Below is what i have done recently in coding, its a neat piece of code i have written which basically shows text box in a triangular shape
which is queit unique if you ask me. Check it out for yourself .
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body{
background:#e3e3e3;
font-family:sans-serif;
width:50%;
margin:100px auto;
}
a{
padding :10px;
color:white;
font-weight:bold;
text-shadow:0 1px 0 black;
line-height:50px;
border-right:30px solid transparent ;
border-bottom:30px solid #4c4c4c ;
height:0;
display:inline-block;
}
div{
border:1px solid #4c4c4c;
border-top:1px solid #4c4c4c;
}
</style>
</head>
<body>
<a href="#">New day </a>
<div>
<h3>Hellow world !</h3>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</body>
</html>
No comments:
Post a Comment