-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_activity_4.html
More file actions
130 lines (125 loc) · 6.76 KB
/
class_activity_4.html
File metadata and controls
130 lines (125 loc) · 6.76 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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_4.html" target="_blank"><img src="img/icons8-github-100.png" alt="Github Image" class="github-repo-icon"></a>
<main class="class-activity-4">
<a href="javascript:void(0)" title="Close Form"><img src="img/icons8-cross-100.png" alt=""
class="form-close-x"></a>
<div class="forms-container">
<div class="form-container">
<form action="#" class="signup-form">
<h3 class="form-header">Sign Up</h3>
<p class="center">It's free and only takes a minute</p>
<label for="">First name</label>
<input type="text" name="" id="" required>
<label for="">Last name</label>
<input type="text" name="" id="" required>
<label for="">Email</label>
<input type="email" name="" id="" required>
<label for="">Password</label>
<input type="password" name="" id="" required>
<label for="">Confirm Password</label>
<input type="password" name="" id="" required>
<button type="submit">Submit</button>
<p class="center form-policy">By clicking the Sign Up button you agree to our <a
href="javascript:void(0)">Terms and Conditions</a> and <a href="javascript:void(0)">Policy
Privacy</a> </p>
</form>
<p class="center outside-form-footer">Already have an account? <a href="jabascript:void(0)">Login
Here</a></p>
</div>
<div class="form-container">
<form action="#" class="login-form">
<h3 class="form-header">Login</h3>
<label for="">Email</label>
<input type="email" name="" id="" required>
<label for="">Password</label>
<input type="password" name="" id="" required>
<button type="submit">Submit</button>
</form>
<p class="center outside-form-footer">Not have an account? <a href="jabascript:void(0)">Sign Up
Here</a></p>
</div>
</div>
</main>
</body>
</html>