Last active
April 27, 2021 05:32
-
-
Save ng-the-engineer/3eb4d1ca8a91b06afa932ed7998062cf 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
<head> | |
<link rel="stylesheet" type="text/css" href="css/popup.css" /> | |
</head> | |
<body class="document"> | |
<div class="page" contenteditable="false"> | |
... | |
<h4>Employment History</h4> | |
... | |
<!-- Popup ABC--> | |
<div id="popupABC" class="popup"> | |
<div class="modal-content"> | |
<div class="container"> | |
<div id="closePopupABC" class="close">×</div> | |
<img | |
src="images\abc_web.png" | |
alt="ABC Company" | |
class="image" | |
style="width: 100%" | |
/> | |
<div class="middle"> | |
<div class="text"> | |
<a href="https://www.google.com" target="_blank" | |
>Go to website</a | |
> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- End Popup ABC--> | |
<div> | |
... | |
<span class="company-name"><button id="jobABC" class="btn">ABC Company</button></span> | |
... | |
</div> | |
</div> | |
</body> | |
<script src="js/popup.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment