0% found this document useful (0 votes)
21 views

Index-4 HTML

The document is an HTML page that contains headings, buttons, radio inputs and divs for content. It includes links to Bootstrap for styling and a JavaScript file for interactivity.

Uploaded by

gauravpatel7777g
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views

Index-4 HTML

The document is an HTML page that contains headings, buttons, radio inputs and divs for content. It includes links to Bootstrap for styling and a JavaScript file for interactivity.

Uploaded by

gauravpatel7777g
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"

integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-
HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
<script src="assignment5.js" defer></script>
</head>

<body>
<div class="container text-center">

<header class="row d-flex flex-row">


<h1 id="first" class="bg-secondary mb-2">Assignment5</h1>
<div class="row row-cols-auto">
<button id="b1" class="btn btn-primary mx-auto"
type="button">Button1</button>
<button id="b2" class="btn btn-primary mx-auto"
type="button">Button2</button>
<button id="b3" class="btn btn-primary mx-auto"
type="button">Button3</button>
</div>
</header>
<div class="row">
<div class="col-md-8"><input type="radio" name="choice" id="mario"
value="mario" checked>mario</div>
<div class="col-6 col-md-1"><input type="radio" name="choice" id="starwars"
value="starwars">starwars
</div>
</div>
<div id="content" class="row row-cols-auto">

</div>
<div id="content2" class="row">

</div>
</div>
</body>

</html>

You might also like