Posts
Showing posts from April, 2020
Emoji expression using pure css
- Get link
- X
- Other Apps
I use number of div tags to create these emoji expression if you want more video like this please subscribe our channel and thanks for your visit Source code: Html: <!DOCTYPE html> <html> <head> <title>emoji</title> <!-- css reference --> <link rel="stylesheet" type="text/css" href="emoji.css"> </head> <body> <!-- Emoji container --> <div id="angry"> <!-- Each div contains eack emoji,and the name for the expressions is given in the div id--> <div id="aface"> <div class="ael"></div> <div class="aer"></div> <h1 class="al"></h1> <h1 class="ar"></h1> <div id="am"></div> </div> </div> <div id="sad"> <!-- Each div contains eack emoji,and the name for the ex...
FB friend request page using Html & Css
- Get link
- X
- Other Apps
In this design a user can view the friend request in different view i hope you like this design,thanks for your visit. Source code below: HTML <!DOCTYPE html> <html> <head> <title>fb.in</title> <!-- font cdn --> <script src='https://kit.fontawesome.com/a076d05399.js'></script> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <!-- css reference link --> <link rel="stylesheet" type="text/css" href="fb.css"> </head> <body> <div id="fb-cover"> <div id="but-con"> <img id="frm" src="cap.png" width="160px" height="160px"> <span id="ic" style="font-size:38px;position:relative;left:180px;top:-50px;color:green;visibility: hidden" class="mater...