-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion1.html
18 lines (18 loc) · 1.04 KB
/
Question1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<h1>Accordion with HTML and CSS</h1>
<link rel="stylesheet" href="Question1Style.css">
<div class="accordion-wrapper">
<div class="accordion">
<input type="radio" name="radio-a" id="check1" checked>
<label class="accordion-label" for="check1">What is a Markup Language?</label>
<div class="accordion-content">
<p>HyperText Markup Language (HTML) is the set of markup symbols or codes inserted into a file intended for display on the Internet. The markup tells web browsers how to display a web page's words and images. 😊</p>
</div>
</div>
<div class="accordion">
<input type="radio" name="radio-a" id="check2">
<label class="accordion-label" for="check2">How do you style the borders?</label>
<div class="accordion-content">
<p>Borders can be applied to most HTML elements within the body. To make a border around an element, all you need is border-style . The values can be solid , dotted , dashed , double , groove , ridge , inset and outset </p>
</div>
</div>
<! (Shubham Pandey) (ID-2021HT66519) ––>