-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday1.html
84 lines (60 loc) · 3.07 KB
/
day1.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day1: CSS | Assignments</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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="day1.css">
</head>
<body>
<div class="box">
<h1>Business <br> Development</h1>
<p>Have an idea or inquiry for Waze business development?</p>
<button class="btn"> <strong>Share your ideas </strong></button>
</div>
<div class="box-card ">
<div class="photo-head">
<h1>Your profiles</h1>
<p>See how your different profiles appear in Google services</p>
<div class="images">
<img class="img1" src="https://images.pexels.com/photos/2379004/pexels-photo-2379004.jpeg" alt="man">
<img class="img2" src="https://www.shutterstock.com/shutterstock/photos/2270328817/display_1500/stock-vector-this-beautiful-cat-watercolor-illustration-is-the-perfect-addition-to-any-cat-lover-s-collection-2270328817.jpg" alt="cat">
</div>
</div>
<div class="border-top"></div>
<div class="body-photo">
<button class="profile-btn">
<a href="#">See profiles</a>
</button>
</div>
</div>
<div class="img-card ">
<img class="photo" src="https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8c2VhJTIwYmVhY2h8ZW58MHx8MHx8fDA%3D" alt="beach-photo">
<div class="body-card">
<p><i class="fa fa-lock"></i> SUBSCRIBE TO ANY PLAN</p>
<h1>Get more features in Google Photos</h1>
<p>Bring your favourite moments to life with more Google Photos editing tools for Android and iOS, including magic Eraser. Subject to eligiblity</p>
<button class="card-btn"> View details</button>
</div>
</div>
<div class="login-box ">
<div class="logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/96/Microsoft_logo_%282012%29.svg" alt="logo">
</div>
<h1>Welcome back!</h1>
<input type="text" placeholder="Enter your email">
<input type="text" placeholder="Enter your password">
<button class="btn-dark"> Log in to Flodesk</button>
<p>Not a member? <a href="#">Sign up</a></p>
<p><a href="#">Forgot your password?</a></p>
<p>By continuing, you agree to Flodesk's <a href="#">terms</a> and acknowledge yo've read our <a href="#">privacy policy</a></p>
</div>
<a href="https://github.com/manish-jsx/CSS-Workshop" target="_blank" >
<img class="github-link" src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub Repository" class="github-logo">
</a>
</body>
</html>