+ 1
How to write on a rectangle?
How do I create white rectangle sections that I can add small paragraphs too using HTML and CSS?
3 Respostas
+ 8
.div{
width=50
height=30
}
+ 4
Just a div tag with borders.
https://code.sololearn.com/WeiOKUcF5fYn/?ref=app
0
Html:
<body>
<div class="bordered">
<p>Text here</p>
</div>
</body>
css:
.bordered {
border: 1px solid black;
}