Last active
April 27, 2021 10:34
-
-
Save ng-the-engineer/ebd9fcda77765bb8572e01a3344dad0d to your computer and use it in GitHub Desktop.
Code snippet of CV2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Modal XYZ--> | |
| <div id="popupXYZ" class="popup"> | |
| <div class="popup-content"> | |
| <div class="container"> | |
| <div id="closePopupXYZ" class="close">×</div> | |
| <div id="xyzAndroid" class="tabContent"> | |
| <img src="images/xyz_android.png" width="100%" /> | |
| </div> | |
| <div id="xyzIos" class="tabContent"> | |
| <img src="images/xyz_ios.png" width="100%" /> | |
| </div> | |
| <!-- Light green #4cd137 for selected tab button --> | |
| <button id="xyzDefault" class="tabButton" onclick="switchTab('xyzAndroid', this, '#4cd137')"> | |
| Android | |
| </button> | |
| <button class="tabButton" onclick="switchTab('xyzIos', this, '#4cd137')"> | |
| iOS | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- End Modal XYZ--> | |
| <div> | |
| <span>MAY 2019 – NOW /</span> | |
| <span class="title">Full Stack Developer</span> | |
| <span>/ </span> | |
| <span class="company-name"><button id="jobXYZ" class="btn">XYZ Company</button></span> | |
| <span>/ San Francisco</span> | |
| </div> | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment