Physics, asked by sghshs, 8 months ago

Write an html code to display the biodata of an employee

Answers

Answered by Aadhi2006S
3

Answer:

How TO - Profile Card

Learn how to create a profile card with CSS.

Jane

John Doe

CEO & Founder, Example

Harvard University

Contact

How To Create a Profile Card

Step 1) Add HTML:

Example

<!-- Add icon library -->

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<div class="card">

<img src="img.jpg" alt="John" style="width:100%">

<h1>John Doe</h1>

<p class="title">CEO & Founder, Example</p>

<p>Harvard University</p>

<a href="#"><i class="fa fa-dribbble"></i></a>

<a href="#"><i class="fa fa-twitter"></i></a>

<a href="#"><i class="fa fa-linkedin"></i></a>

<a href="#"><i class="fa fa-facebook"></i></a>

<p><button>Contact</button></p>

</div>

hope it helps if it helps mark brainlest

Answered by Creatoransh
4

Explanation:

<!-- Add icon library -->

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<div class="card">

  <img src="img.jpg" alt="John" style="width:100%">

  <h1>John Doe</h1>

  <p class="title">CEO & Founder, Example</p>

  <p>Harvard University</p>

  <a href="#"><i class="fa fa-dribbble"></i></a>

  <a href="#"><i class="fa fa-twitter"></i></a>

  <a href="#"><i class="fa fa-linkedin"></i></a>

  <a href="#"><i class="fa fa-facebook"></i></a>

  <p><button>Contact</button></p>

</div>

Similar questions