<html>
<head>
<style> body {
text-align: center;
}
.gold {
background-color: gold;
margin-left: 100px;
margin-right: 100px;
}
.silver {
background-color: silver;
margin-left: 70px;
margin-right: 70px;
}</style>
</head>
<body>
<h2>Women's Gymnastics Winners </h2>
<p class="gold">Simone Biles</p>
<p class="silver">Aly Raisman</p>
<script src="script.js"></script>
</body>
</html>]]>Make sure to pick text-align
, followed by :
, and finally center
.