-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconnect.html
118 lines (99 loc) · 5.12 KB
/
connect.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="">
<meta name="description" content="">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- ==========BOXICON CSS LINK========== -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!-- ==========UNICONS CSS LINK========== -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- ==========FONTAWESOME CSS LINK========== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<!-- ==========POPPINS GOOGLE FONT LINK========== -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<!-- ==========GLIGHTBOX CSS LINK========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css" />
<!-- ==========SWIPER SLIDER CSS ========== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<!-- ==========BOOTSTARP CSS LINK========== -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- ==========CUSTOM CSS LINK========== -->
<link rel="stylesheet" href="css/main.css">
<title>GetInCard for Digital Business Card</title>
</head>
<body>
<!-- ===================================== -->
<!-- BUSINESS CARD PART START -->
<!-- ===================================== -->
<div class="wrapper">
<div class="profile_wrapper ">
<div class="profile_card">
<div class="profile_card-header">
<div class="profile_card-header_top">
<div class="connect_wrapper d-flex align-items-center">
<div class="connect"><h3>Connect</h3></div>
</div>
<div class="share_option">
<div id="back" class="roundbox"><a href="businesscardprofile.html"><i class="fa-solid fa-arrow-left-long"></i></a></div>
</div>
</div>
<div class="connect_form">
<h1>Send Me Your Thoughts</h1>
<h6>Share your contact information with <span id="user">Jashim</span>!</h6>
<form action="#">
<div class="inputBx">
<label for="name">Hello, Jashim My name is.. </label>
<input type="text" name="name" id="name">
</div>
<div class="inputBx">
<label for="email">You Can reach me at..</label>
<input type="email" name="email" id="email" placeholder="Email Address">
</div>
<div class="inputBx">
<label for="number"> <span>Telephone number </span> <span class="example">i.e. +8801234567890</span></label>
<input type="number" name="number" id="number" placeholder="With country code">
</div>
<div class="connect_btns">
<div class="info_btn">
<input type="submit" value="SEND" class=" connect_btn button">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- ===================================== -->
<!-- BUSINESS CARD PART END -->
<!-- ===================================== -->
<!-- ==========JS HERE========== -->
<!-- ==========COUNTERUP JS LINK ========== -->
<!-- ==========MAIN JQUREY LINK========== -->
<!-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<!-- ==========BOOTSTARP JS LINK========== -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>
<!-- ==========COUNTERUP JS LINK ========== -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="https://bfintal.github.io/Counter-Up/jquery.counterup.min.js"></script>
<!-- ==========SWIPER SLIDER JS ========== -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<!-- ==========BOXICONS JS========== -->
<script src="https://unpkg.com/boxicons@2.1.2/dist/boxicons.js"></script>
<!-- ==========LORDICONS JS========== -->
<script src="https://cdn.lordicon.com/pzdvqjsp.js"></script>
<!-- ==========GLIGHTBOX JS LINK ========== -->
<script src="https://cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/js/glightbox.min.js"></script>
<!-- ==========CUSTOM JS ========== -->
<script src="js/app.js"></script>
<script>
// GLightbox();
</script>
</body>
</html>