Full Stack Web Development Courses with Real-time projects Start Now!!
Program 1
<html>
<head><title>Box sizing </title>
<style>
#boxwh
{
width: 500px;
border: 10px;
border-color: blue;
border-style: double;
padding: 400px;
box-sizing:border-box;
}
</style>
</head>
<body>
<center>
<div id="boxwh">
Python is a General Purpose object-oriented programming language, which means that it can model real-world entities. It is also dynamically-typed because it carries out type-checking at runtime.
It does so to make sure that the type of construct matches what we expect it to be.
The distinctive feature of Python is that it is an interpreted language.The Python IDLE (Integrated Development Environment) executes instructions one line at a time. This also lets us use it as a calculator.
Python is a General Purpose object-oriented programming language, which means that it can model real-world entities. It is also dynamically-typed because it carries out type-checking at runtime.
It does so to make sure that the type of construct matches what we expect it to be.
The distinctive feature of Python is that it is an interpreted language.The Python IDLE (Integrated Development Environment) executes instructions one line at a time. This also lets us use it as a calculator.
</div>
</center>
</body>
</html>