User-939850651 posted
Hi Moodhi,
According to your description, you could use
Bootstrap Grid System to achieve your requirement. And need to add the corresponding meta tag in the head.
Something like this:
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="/Content/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
<div class="col-6 col-sm-2">
<img src="/img/1.png" alt="Alternate Text" />
</div>
</div>
</div>
</body>
Result:

Best regards,
Xudong Peng