Webpage Css
Webpage Css
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style10.css">
<title>Document</title>
</head>
<body>
<div id="head" >
<div style="width: 100%;height:100px;background-color: aqua;">
<h1>Mudit Singal</h1>
<p>--head of Data Science</p>
</div>
</div>
<div id="main">
<div style="width: 50%;height:700px;background-color: rgb(151, 224,
224);">
<h1>Placement</h1>
<p>(90 LK)</p>
</div>
<div style="width: 50%;height:700px;background-color: rgb(169, 221,
48);">
<h1>Hobblies</h1>
<p>(playing)</p>
</div>
</div>
</body>
</html>
CSS
#main{
display: flex;
text-align: center;
color: rgb(249, 42, 108);
border-color: blue;
}
#head{
text-align: center;
border-radius: 20px;
color: rgb(218, 57, 186);
}