Advertisement
nouredinAlhabal

Untitled

May 10th, 2021
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.17 KB | None | 0 0
  1. <Tab.Container id="left-tabs-example" defaultActiveKey="first">
  2.   <Row>
  3.     <Col sm={3}>
  4.       <Nav variant="pills" className="flex-column">
  5.         <Nav.Item>
  6.           <Nav.Link eventKey="first">Geography</Nav.Link>
  7.         </Nav.Item>
  8.         <Nav.Item>
  9.           <Nav.Link eventKey="second">People and Society</Nav.Link>
  10.         </Nav.Item>
  11.         <Nav.Item>
  12.           <Nav.Link eventKey="second">Government</Nav.Link>
  13.         </Nav.Item>
  14.       </Nav>
  15.     </Col>
  16.     <Col sm={9}>
  17.       <Tab.Content>
  18.         <Tab.Pane eventKey="first">
  19.         <div>
  20.         <strong>Map: </strong>
  21.         <p>
  22.         <img src="https://cdn.britannica.com/51/4551-050-98D9E63B/Syria-map-boundaries-cities-locator.jpg" width="100%"/>
  23.         </p>
  24.         </div>
  25.           <div>
  26.           <strong>Location: </strong><p>Middle East, bordering the Mediterranean Sea, between Lebanon and Turkey</p>
  27.           </div>
  28.           <div>
  29.           <strong>Geographic coordinates: </strong><p>35 00 N, 38 00 E</p>
  30.           </div>
  31.         </Tab.Pane>
  32.         <Tab.Pane eventKey="second">
  33.           <Sonnet />
  34.         </Tab.Pane>
  35.       </Tab.Content>
  36.     </Col>
  37.   </Row>
  38. </Tab.Container>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement