-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox-practice.html
More file actions
37 lines (36 loc) · 951 Bytes
/
flexbox-practice.html
File metadata and controls
37 lines (36 loc) · 951 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flexbox Practice</title>
<link rel="stylesheet" href="css/flexbox-practice.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css">
</head>
<body>
<body>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<article class="card">
<section>
<img src="images/profile.png" alt="profile-image" >
</section>
<section class="text-section">
<h2>Ron Swanson</h2>
<h3>Director</h3>
<hr>
</section>
<section class="icons">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</section>
</article>
</body>
</body>
</html>