📂文章目录
- 二、✍️网站描述
- 三、📚网站介绍
- 四、💠网站演示
- 五、⚙️ 网站代码
- 🧱HTML结构代码
- 六、🥇 如何让学习不再盲目
- 七、🎁更多干货
❤ 【作者主页——🔥获取更多优质源码】
❤ 【学习资料/简历模板/面试资料/ 网站设计与制作】
❤ 【web前端期末大作业——🔥🔥毕设项目精品实战案例】
# 一、👨🎓网站题目 🧑🎓 学生管理系统网页设计 、OA管理系统、后台管理模板、智能停车系统、等网站的设计与制作。
二、✍️网站描述
🏷️HTML网页设计,采用DIV+CSS布局,共有多个页面,排版整洁,内容丰富,主题鲜明,首页使用CSS排版比较丰富,色彩鲜明有活力,导航与正文字体分别设置不同字号大小。导航区域设置了背景图。子页面有纯文字页面和图文并茂页面。
🏅 一套优质的💯网页设计应该包含 (具体可根据个人要求而定)
- 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分。
- 所有页面相互超链接,可到二三级页面,有多页面组成。
- 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术。
- 菜单美观、醒目,二级菜单可正常弹出与跳转。
- 可选有JS特效,如定时切换和手动切换图片轮播。
- 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用。
- 页面清爽、美观、大方,不雷同。 。
- 不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。
三、📚网站介绍
📔网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。
📓网站程序方面:计划采用最新的网页编程语言HTML5+CSS3+JS程序语言完成网站的功能设计。并确保网站代码兼容目前市面上所有的主流浏览器,已达到打开后就能即时看到网站的效果。
📘网站素材方面:计划收集各大平台好看的图片素材,并精挑细选适合网页风格的图片,然后使用PS做出适合网页尺寸的图片。
📒网站文件方面:网站系统文件种类包含:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;
📙网页编辑方面:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++
等任意html编辑软件进行运行及修改编辑等操作)。
其中:
(1)📜html文件包含:其中index.html是首页、其他html为二级页面;
(2)📑 css文件包含:css全部页面样式,文字滚动, 图片放大等;
(3)📄 js文件包含:js实现动态轮播特效, 表单提交, 点击事件等等(个别网页中运用到js代码)。
四、💠网站演示
五、⚙️ 网站代码
🧱HTML结构代码
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<meta name="Keywords" content="关键词,关键词">
<meta name="description" content="">
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
font-size: 12px;
font-family: "微软雅黑";
color: #666;
}
a {
text-decoration: none;
}
ul li {
list-style: none;
}
.tz_content {
width: 100%;
background: #282828;
}
/*t_left start*/
.tz_content .t_left {
width: 200px;
height: 800px;
background: #282828;
position: fixed;
left: 0;
top: 0;
z-index: 2;
}
.tz_content .t_left .l_logo {
width: 100%;
height: 108px;
border-bottom: 1px solid #000000;
background: url("picture/logo1.png") no-repeat center;
}
.tz_content .t_left .l_nav {
width: 100%;
border-bottom: 1px solid #414141;
}
.tz_content .t_left .l_nav ul li {
border-bottom: 1px solid #000000;
line-height: 52px;
border-top: 1px solid #414141;
}
.tz_content .t_left .l_nav ul li a {
display: block;
padding-left: 30px;
}
.tz_content .t_left .l_nav ul li a:hover {
background: #28b779;
}
.tz_content .t_left .l_nav ul .active a {
background: #28b779;
}
.tz_content .t_left .l_nav ul li a i {
width: 16px;
height: 16px;
display: block;
background: url("picture/ht_icon.png") no-repeat;
float: left;
margin-top: 20px;
}
.tz_content .t_left .l_nav ul li a .icon_1 {
background-position: -233px -52px;
}
.tz_content .t_left .l_nav ul li a .icon_2 {
background-position: -254px -52px;
}
.tz_content .t_left .l_nav ul li a .icon_3 {
background-position: -211px -52px;
}
.tz_content .t_left .l_nav ul li a .icon_4 {
background-position: -274px -52px;
}
.tz_content .t_left .l_nav ul li a .icon_5 {
background-position: -295px -52px;
}
.tz_content .t_left .l_nav ul li a .icon_6 {
background-position: -315px -52px;
width: 19px;
height: 6px;
margin-top: 24px;
}
.tz_content .t_left .l_nav ul li a span {
font-size: 14px;
color: #fff;
padding-left: 10px;
}
/*end t_left*/
/*t_header start*/
.tz_content .t_header {
width: 100%;
height: 56px;
background: #2f3437;
position: relative;
z-index: 1;
}
/*h_nav start*/
.tz_content .t_header .h_nav {
height: 56px;
margin-left: 200px;
float: left;
}
.tz_content .t_header .h_nav ul li {
float: left;
width: 110px;
height: 56px;
border-left: 1px solid #414141;
border-right: 1px solid #000;
}
.tz_content .t_header .h_nav ul li a {
display: block;
color: #838383;
text-align: center;
padding-top: 8px;
}
.tz_content .t_header .h_nav ul li a:hover {
color: #fff;
}
.tz_content .t_header .h_nav ul li a i {
display: block;
width: 18px;
height: 17px;
background: url("picture/ht_icon.png") no-repeat;
margin: 3px auto;
}
.tz_content .t_header .h_nav ul li .h_sel {
color: #fff;
}
.tz_content .t_header .h_nav ul li a .h_icon1 {
background-position: 0 -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon2 {
background-position: -24px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon2 {
background-position: -24px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon3 {
background-position: -48px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon3 {
background-position: -48px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon4 {
background-position: -68px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon4 {
background-position: -68px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon5 {
background-position: -91px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon5 {
background-position: -91px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon6 {
background-position: -113px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon6 {
background-position: -113px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon7 {
background-position: -133px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon7 {
background-position: -133px -25px;
}
.tz_content .t_header .h_nav ul li a .h_icon8 {
background-position: -152px 0;
}
.tz_content .t_header .h_nav ul li a:hover .h_icon8 {
background-position: -152px -25px;
}
/*end h_nav*/
/*h_info start*/
.tz_content .t_header .h_info {
height: 56px;
position: absolute;
top: 0;
right: 10px;
}
.tz_content .t_header .h_info .h_user {
line-height: 56px;
color: #fff;
float: left;
}
.tz_content .t_header .h_info .h_out {
width: 65px;
height: 30px;
background: #28b779;
margin: 13px 5px 0 10px;
float: right;
}
.tz_content .t_header .h_info .h_out a {
display: block;
line-height: 30px;
color: #fff;
padding-left: 10px;
}
.tz_content .t_header .h_info .h_out a span {
float: left;
}
.tz_content .t_header .h_info .h_out a i {
width: 14px;
height: 14px;
display: block;
background: url("picture/ht_icon.png") no-repeat 0 -51px;
float: left;
margin: 6px 8px;
}
/*end h_info*/
/*end header*/
.tz_content .t_right {
height: 1500px;
background: #f3f4f5;
margin-left: 200px;
}
/*r_location start*/
.tz_content .t_right .r_location {
height: 51px;
background: #e5e5e5;
border-bottom: 1px solid #ccc;
line-height: 51px;
}
.tz_content .t_right .r_location i {
width: 14px;
height: 18px;
display: block;
background: url("picture/ht_icon.png") no-repeat;
background-position: -16px -51px;
float: left;
margin: 16px 20px 0 20px;
}
/*end r_location*/
/*r_message start*/
.tz_content .t_right .r_message .m_list {
height: 99px;
float: left;
margin-left: 1%;
margin-top: 20px;
}
.tz_content .t_right .r_message .m_1 {
width: 22%;
background: #27a9e3;
}
.tz_content .t_right .r_message .m_2 {
width: 16%;
background: #28b779;
}
.tz_content .t_right .r_message .m_3 {
width: 17%;
background: #ffb848;
}
.tz_content .t_right .r_message .m_4 {
width: 21%;
background: #cc6a6a;
}
.tz_content .t_right .r_message .m_5 {
width: 18%;
background: #2255a4;
}
.tz_content .t_right .r_message .m_6 {
width: 17%;
background: #da542e;
}
.tz_content .t_right .r_message .m_7 {
width: 20%;
background: #2255a4;
}
.tz_content .t_right .r_message .m_8 {
width: 18%;
background: #6297bc;
}
.tz_content .t_right .r_message .m_9 {
width: 20%;
background: #27a9e3;
}
.tz_content .t_right .r_message .m_10 {
width: 19%;
background: #28b779;
}
.tz_content .t_right .r_message .m_list .m_pic {
width: 44px;
height: 46px;
background: url("picture/ht_icon.png") no-repeat;
float: left;
margin: 25px 10px 0 20px;
}
.tz_content .t_right .r_message .m_list:hover {
background: #2f3437;
}
.tz_content .t_right .r_message .m_list .m_desc {
color: #fff;
margin-top: 25px;
}
.tz_content .t_right .r_message .m_list .m_desc span {
font-size: 24px;
}
.tz_content .t_right .r_message .m_1 .m_pic {
background-position: 0 -76px;
}
.tz_content .t_right .r_message .m_2 .m_pic {
background-position: -46px -77px;
}
.tz_content .t_right .r_message .m_3 .m_pic {
background-position: -96px -77px;
}
.tz_content .t_right .r_message .m_4 .m_pic {
background-position: -146px -77px;
}
.tz_content .t_right .r_message .m_5 .m_pic {
background-position: -190px -77px;
}
.tz_content .t_right .r_message .m_6 .m_pic {
background-position: -239px -77px;
}
.tz_content .t_right .r_message .m_7 .m_pic {
background-position: -288px -77px;
}
.tz_content .t_right .r_message .m_8 .m_pic {
background-position: -342px -77px;
}
.tz_content .t_right .r_message .m_9 .m_pic {
background-position: -395px -77px;
}
.tz_content .t_right .r_message .m_10 .m_pic {
background-position: -449px -77px;
}
/*end r_message*/
/*清除浮动*/
.clear {
clear: both;
}
/*r_table start*/
.tz_content .t_right .r_table {
border: 1px solid #ccc;
margin: 0 1% 0 1%;
background: #fff;
margin-top: 20px;
padding-bottom: 10px;
}
.tz_content .t_right .r_table .r_title {
width: 100%;
height: 40px;
background: #eee;
border-bottom: 1px solid #ccc;
}
.tz_content .t_right .r_table .r_title i {
width: 16px;
height: 14px;
display: block;
background: url("picture/ht_icon.png") no-repeat -386px -15px;
float: left;
margin: 12px;
}
.tz_content .t_right .r_table .r_title p {
height: 40px;
line-height: 40px;
border-left: 1px solid #ccc;
float: left;
padding-left: 5px;
color: #000;
}
.tz_content .t_right .r_table .r_label {
width: 80%;
height: 100px;
float: left;
}
.tz_content .t_right .r_table .r_label ul li {
list-style: none;
float: left;
background: #999;
margin: 10px 10px 0 10px;
}
.tz_content .t_right .r_table .r_label ul li a {
display: block;
padding: 8px 20px;
color: #fff;
}
.tz_content .t_right .r_table .r_label ul li a:hover {
background: #28b779;
}
.tz_content .t_right .r_table .r_label ul .select a {
background: #28b779;
}
.tz_content .t_right .r_table .r_label ul li a i {
width: 15px;
height: 14px;
display: block;
background: url("picture/ht_icon.png") no-repeat;
float: left;
margin-right: 10px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon1 {
background-position: -33px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon2 {
background-position: -50px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon3 {
background-position: -67px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon4 {
background-position: -87px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon5 {
background-position: -105px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon6 {
background-position: -123px -52px
}
.tz_content .t_right .r_table .r_label ul li a .l_icon7 {
background-position: -140px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon8 {
background-position: -155px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon9 {
background-position: -172px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon10 {
background-position: -191px -52px;
}
.tz_content .t_right .r_table .r_label ul li a .l_icon11 {
background-position: -212px -52px;
}
.tz_content .t_right .r_table .r_search {
width: 19%;
height: 30px;
float: left;
padding-top: 10px;
}
.tz_content .t_right .r_table .r_search .r_text {
width: 60%;
height: 28px;
line-height: 28px;
border: 1px solid #ddd;
float: right;
}
.tz_content .t_right .r_table .r_search .r_btn {
width: 20%;
height: 29px;
background: #999;
color: #fff;
cursor: pointer;
border: 0;
float: right;
}
/*end r_table*/
/*r_table_list start*/
.tz_content .t_right .r_table .r_table_list {
width: 100%;
}
.tz_content .t_right .r_table .r_table_list .t_tab {
border-collapse: collapse;
width: 98%;
text-align: center;
margin: 0 1%;
}
.tz_content .t_right .r_table .r_table_list tr th {
line-height: 40px;
background: #eee;
}
.tz_content .t_right .r_table .r_table_list tr td {
border: 1px solid #ddd;
line-height: 40px;
}
.tz_content .t_right .r_table .r_table_list .t_tab thead {
border: 1px solid #ddd;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr:hover {
background: #EAEAEA;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr:hover .t_action {
display: block;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action {
width: 108px;
height: 24px;
margin: 0 auto;
display: none;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr .t_td {
width: 120px;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action a {
width: 24px;
height: 24px;
display: block;
float: left;
margin-right: 2px;
background: url("picture/ht_icon.png") no-repeat;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action a:hover {
background-color: #2f3437;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action .a_see {
background-position: -359px -45px;
background-color: #6297bc;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action .a_edit {
background-position: -379px -47px;
background-color: #27a9e3;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action .a_save {
background-position: -398px -47px;
background-color: #28b779;
}
.tz_content .t_right .r_table .r_table_list .t_tab tbody tr td .t_action .a_del {
background-position: -417px -48px;
background-color: #ff912f;
}
/*end r_table_list*/
/*头部导航和消息提示小于1360的时候 用下边的样式*/
@media screen and (max-width:1360px) {
/*h_nav start*/
.tz_content .t_header .h_nav {
margin-left: 200px;
}
.tz_content .t_header .h_nav ul li {
width: 80px;
}
/*end h_nav*/
.tz_content .t_right .r_message .m_list .m_pic {
display: none;
}
.tz_content .t_right .r_message .m_list .m_desc {
text-align: center;
}
}
/*头部导航和左侧导航小于1024的时候 用下边的样式*/
@media screen and (max-width:1024px) {
/*t_left start*/
.tz_content .t_left {
width: 50px;
}
.tz_content .t_left .l_logo {
height: 54px;
background: url("picture/logo1.png") no-repeat center;
}
.tz_content .t_left .l_nav ul li a {
padding-left: 16px;
height: 52px;
}
.tz_content .t_left .l_nav ul li a span {
display: none;
}
/*end t_left*/
/*h_nav start*/
.tz_content .t_header .h_nav {
margin-left: 50px;
}
.tz_content .t_header .h_nav ul li {
width: 60px;
}
.tz_content .t_header .h_nav ul li a span {
display: none;
}
.tz_content .t_header .h_nav ul li a i {
margin: 14px auto;
}
/*end h_nav*/
.tz_content .t_header .h_info .h_user {
display: none;
}
.tz_content .t_right {
margin-left: 0;
}
.tz_content .t_right .r_location {
margin-left: 50px;
}
.tz_content .t_right .r_message {
margin-left: 50px;
}
.tz_content .t_right .r_table {
margin-left: 60px;
}
}
</style>
</head>
<body>
<div class="tz_content">
<!--t_left start-->
<div class="t_left">
<div class="l_logo"></div>
<div class="l_nav">
<ul>
<li class="active">
<a href="">
<i class="icon_1"></i>
<span>首页</span>
</a>
</li>
<li>
<a href="student.html">
<i class="icon_1"></i>
<span>学生列表</span>
</a>
</li>
<li>
<a href="teacher.html">
<i class="icon_2"></i>
<span>教师列表</span>
</a>
</li>
<li>
<a href="course.html">
<i class="icon_3"></i>
<span>专业课列表</span>
</a>
</li>
<li>
<a href="grade.html">
<i class="icon_4"></i>
<span>年级管理</span>
</a>
</li>
<li>
<a href="class.html">
<i class="icon_5"></i>
<span>班级管理</span>
</a>
</li>
<li>
<a href="work.html">
<i class="icon_6"></i>
<span>作业管理</span>
</a>
</li>
</ul>
</div>
</div>
<!--t_left end-->
<!--t_header start-->
<div class="t_header">
<!--h_nav start-->
<div class="h_nav">
<ul>
<li>
<a href="#" class="h_sel">
<i class="h_icon1"></i>
<span>首页</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon2"></i>
<span>界面管理</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon3"></i>
<span>栏目管理</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon4"></i>
<span>内容管理</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon5"></i>
<span>用户管理</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon6"></i>
<span>论坛中心</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon7"></i>
<span>应用中心</span>
</a>
</li>
<li>
<a href="#">
<i class="h_icon8"></i>
<span>工具</span>
</a>
</li>
</ul>
</div>
<!--end h_nav-->
<!--h_info start-->
<div class="h_info">
<div class="h_user">当前用户:Arry , 身份:系统管理员</div>
<div class="h_out">
<a href="#">
<span>退出</span>
<i></i>
</a>
</div>
</div>
<!--end h_info-->
</div>
<!--end t_header-->
<!--t_right start-->
<div class="t_right">
<!--r_location start-->
<div class="r_location">
<i></i>
<p>您当前所在位置:首页 > 后台中心</p>
</div>
<!--end r_location-->
<!--r_message start-->
<div class="r_message">
<div class="m_list m_1">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_2">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_3">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_4">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_5">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_6">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_7">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_8">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_9">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="m_list m_10">
<div class="m_pic"></div>
<div class="m_desc">
<span>2450</span>
<p>所有用户数</p>
</div>
</div>
<div class="clear"></div>
</div>
<!--end r_message-->
</div>
<!--end t_right-->
</div>
</body>
</html>
<script>
var del = document.getElementsByClassName('a_del')
for (let i = 0; i < del.length; i++) {
del[i].onclick = function () {
del[i].parentNode.parentNode.parentNode.remove()
}
}
</script>
六、🥇 如何让学习不再盲目
21年程序员总结给编程菜鸟的16条忠告
- 入门期间不要盲目看太多书,找一本网上或身边有经验程序员推荐的教材,先系统的学习。
- 多看帮助文档,帮助文档就像一个游戏的玩法说明通关秘籍,该看就看别太自信。
- 菜鸟容易被对象、属性、方法等词汇迷惑?那是你连最基础知识都还没掌握。
- 不要忽视没一个看起来不起眼的问题,经常总结做到举一反三。
- 没积累足够知识和经验前,你是开发不出一个完整项目的。
- 把最新技术挂在嘴边,还不如把过时技术牢记心中。
- 活到老学到老,只有一招半式是闯不了江湖的。
- 看得懂的书,仔细看;看不懂的书,硬着头皮也要看完。
- 书读百遍其义自见,别指望读一遍就能掌握。
- 请把教程里的例子亲手实践下,即使案例中有完整源码。
- 把在教程中看到的有意义的例子扩充;并将其切实的运用到自己的工作中。
- 不要漏掉教程中任何一个习题——请全部做完并做好笔记。
- 水平是在不断的实践中完善和发展的,你与大牛差的只是经验的积累。
- 每学到一个难点的时候,尝试对朋友或网上分享你的心得,让别人都能看得懂说明你真的掌握。
- 做好保存源文件的习惯,这些都是你的知识积累。
- 遇到问题不要张口就问,要学会自己找答案,比如google、百度和w3cschool上都有很多编程相关资料,你只要输入关键字就能找到你的答案。
七、🎁更多干货
1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏”
一键三连哦!
2.💗【👇🏻👇🏻👇🏻关注我| 💬获取更多源码 | 优质文章】
带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!
3.
以上内容技术相关问题💌欢迎一起交流学习👇🏻👇🏻👇🏻💬