-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofileCard.html
More file actions
19 lines (19 loc) · 817 Bytes
/
profileCard.html
File metadata and controls
19 lines (19 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<title>Attributes and CSS Exercise</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Agbalumo&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/attributes-style.css">
</head>
<body>
<div id="profile-card">
<img id="profile-pic" src="https://via.placeholder.com/150" alt="Profile Picture">
<h2 id="profile-name">John Doe</h2>
<p id="profile-desc">This is a sample description text for a profile card. JavaScript will be used to manipulate this card.</p>
</div>
<button id="toggle-btn">Toggle Background</button>
<script src="js/attributes-script.js"></script>
</body>
</html>