forked from itscodenation/flw1-u1l2-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code-along.html
27 lines (23 loc) · 924 Bytes
/
code-along.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<!-- 1. Link to the external CSS stylesheet (style.css) -->
</head>
<body class="container">
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<div class="profile-card">
<!-- 2. Add a class attribute with the value "profile-pic" to the img tag. -->
<img src="https://via.placeholder.com/150" alt="User's Photo">
<!-- 3. Replace "John Doe" with your name in the h2 tag. Then, head to styles.css. -->
<h2 class="profile-name">John Doe</h2>
<p class="profile-bio">A web developer who loves to create beautiful and functional websites.</p>
</div>
</body>
</html>