-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_activity_13.html
More file actions
113 lines (105 loc) · 6.17 KB
/
class_activity_13.html
File metadata and controls
113 lines (105 loc) · 6.17 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to CSS</title>
<link rel="shortcut icon" href="img/css_favicon/favicon-32x32.png" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/activity.css">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav class="main-navbar">
<span class="nav-logo">
<img src="img/css-logo.png" alt="CSS Logo">
<h3>Intro to CSS</h3>
</span>
<span class="nav-links">
<a href="index.html">Home</a>
<a href="https://ahmedmahmud.vercel.app/">Html Classes</a>
<div class=" dropdown">
<button class="dropbtn">Class Activities
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<div class="row">
<a href="class_activity_1.html">Class Activity 1</a>
<a href="class_activity_2.html">Class Activity 2</a>
<a href="class_activity_3.html">Class Activity 3</a>
<a href="class_activity_4.html">Class Activity 4</a>
<a href="class_activity_5.html">Class Activity 5</a>
<a href="class_activity_6.html">Class Activity 6</a>
<a href="class_activity_7.html">Class Activity 7</a>
<a href="class_activity_8.html">Class Activity 8</a>
<a href="class_activity_9.html">Class Activity 9</a>
<a href="class_activity_10.html">Class Activity 10</a>
<a href="class_activity_11.html">Class Activity 11</a>
<a href="class_activity_12.html">Class Activity 12</a>
<a href="class_activity_13.html">Class Activity 13</a>
<a href="class_activity_14.html">Class Activity 14</a>
<a href="class_activity_15.html">Class Activity 15</a>
<a href="class_activity_16.html">Class Activity 16</a>
<a href="class_activity_17.html">Class Activity 17</a>
</div>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Assignment
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<div class="row">
<a href="assignment_1.html">Assignment 1</a>
<a href="assignment_2.html">Assignment 2</a>
<a href="assignment_3.html">Assignment 3</a>
<a href="assignment_4.html">Assignment 4</a>
<a href="assignment_5.html">Assignment 5</a>
<a href="assignment_6.html">Assignment 6</a>
<a href="assignment_7.html">Assignment 7</a>
</div>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Projects
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<div class="row">
<a href="https://ahmedfrontend.w3spaces.com/" target="_blank">Artisan's Oven</a>
<a href="https://deliciousbytes.vercel.app/" target="_blank">Delicious Bytes</a>
</div>
</div>
</div>
<a href="https://github.com/dDevAhmed/" target="_blank">Author</a>
<a href="https://github.com/dDevAhmed/frontend_development_css_course" target="_blank"
title="Course Repo" class="course-repo">
<img src="img/icons8-github-100.png" alt="Course Github Repo" class="nav-course-repo">
</a>
</span>
</nav>
</header>
<a href="https://github.com/dDevAhmed/frontend_development_css_course/blob/master/class_activity_13.html"
target="_blank"><img src="img/icons8-github-100.png" alt="Github Image" class="github-repo-icon"></a>
<main class="class-activity-13">
<h1>Floating images left and right</h1>
<div class="top-div">
<p>This is a div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div.
<span class="image">
<img src="img/Yahoo-logo-removebg-preview.png" alt="Yahoo logo">
<small class="hadoop">hadoop</small>
</span>
This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div.</p>
</div>
<div class="bottom-div">
<p>This is a div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div.
<span class="image float-right">
<img src="img/Yahoo-logo-removebg-preview.png" alt="Yahoo logo">
<small class="hadoop">hadoop</small>
</span>
This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div. This is still the same div.</p>
</div>
</main>
</body>
</html>