-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Google Analytics tracking code to HTML files
- Loading branch information
1 parent
30edc3c
commit ce541a4
Showing
4 changed files
with
119 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,15 @@ | |
<html lang="en"> | ||
|
||
<head> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-76QCJCGDB5"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-76QCJCGDB5'); | ||
</script> | ||
<link rel="icon" href="./assets/images/favicon.png" type="image/x-icon"> | ||
<link rel="stylesheet" type="text/css" href="./style.css" /> | ||
<link rel="stylesheet" href="./button.css" /> | ||
|
@@ -461,7 +470,9 @@ <h6>About Us</h6> | |
Simplify your internship experience with our easy-to-follow | ||
articles and docs. | ||
</p> | ||
<a class="libutton" href="https://www.linkedin.com/build-relation/newsletter-follow?entityUrn=7202959273855713280" target="_blank">Subscribe on LinkedIn</a> | ||
<a class="libutton" | ||
href="https://www.linkedin.com/build-relation/newsletter-follow?entityUrn=7202959273855713280" | ||
target="_blank">Subscribe on LinkedIn</a> | ||
</div> | ||
|
||
<div class="col-xs-6 col-md-3"> | ||
|
@@ -502,63 +513,64 @@ <h6>Quick Links</h6> | |
</div> | ||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
<style> | ||
.libutton { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 7px; | ||
text-align: center; | ||
outline: none; | ||
text-decoration: none !important; | ||
color: #ffffff !important; | ||
width: 200px; | ||
height: 32px; | ||
border-radius: 16px; | ||
background-color: #0A66C2; | ||
font-family: "SF Pro Text", Helvetica, sans-serif; | ||
} | ||
.libutton:hover{ | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 7px; | ||
text-align: center; | ||
outline: none; | ||
text-decoration: none ; | ||
color: #0A66C2 ; | ||
width: 200px; | ||
height: 32px; | ||
border-radius: 16px; | ||
background-color: black; | ||
|
||
border-color: #0A66C2; | ||
font-family: "SF Pro Text", Helvetica, sans-serif; | ||
} | ||
</style> | ||
<hr style="border-top: 1px solid black;"> | ||
|
||
<!-- Copyright Section --> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<p class="copyright-text"> | ||
Copyright © | ||
<script>document.write(new Date().getFullYear())</script> All Rights Reserved by CSEdge Learn | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
</div> | ||
<style> | ||
.libutton { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 7px; | ||
text-align: center; | ||
outline: none; | ||
text-decoration: none !important; | ||
color: #ffffff !important; | ||
width: 200px; | ||
height: 32px; | ||
border-radius: 16px; | ||
background-color: #0A66C2; | ||
font-family: "SF Pro Text", Helvetica, sans-serif; | ||
} | ||
|
||
.libutton:hover { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 7px; | ||
text-align: center; | ||
outline: none; | ||
text-decoration: none; | ||
color: #0A66C2; | ||
width: 200px; | ||
height: 32px; | ||
border-radius: 16px; | ||
background-color: black; | ||
|
||
border-color: #0A66C2; | ||
font-family: "SF Pro Text", Helvetica, sans-serif; | ||
} | ||
</style> | ||
<hr style="border-top: 1px solid black;"> | ||
|
||
<!-- Copyright Section --> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<p class="copyright-text"> | ||
Copyright © | ||
<script>document.write(new Date().getFullYear())</script> All Rights Reserved by CSEdge Learn | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
|
||
</footer> | ||
<!-- Bootstrap core JS--> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
|
This file contains 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
This file contains 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
This file contains 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