Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 149 additions & 0 deletions Pages/Alerts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/style.css">
<link rel="icon" href="../static/diamond.png">
<title>RadiantCSS | Alerts</title>
</head>
<body>

<div class="sidebar sidebar-hide">
<!-- <div class="text">Side Menu</div> -->
<ul>
<li class="component-btn"><a class="active" href="#">Components
<span class="fas fa-caret-down"></span>
</a>
<ul class="sidebar-sub sidebar-sub-hide">
<li><a href="./Avatars.html"><i class="fas fa-angle-right"></i> Avatar</a></li>
<li><a class="active" href="./Alerts.html"><i class="fas fa-angle-right"></i> Alerts</a></li>
<li><a href="./Badges.html"><i class="fas fa-angle-right"></i> Badges</a></li>
<li><a href="./Buttons.html"><i class="fas fa-angle-right"></i> Buttons</a></li>
<li><a href="./Card.html"><i class="fas fa-angle-right"></i> Cards</a></li>
<li><a href="./Image.html"><i class="fas fa-angle-right"></i> Images</a></li>
<li><a href="./Inputs.html"><i class="fas fa-angle-right"></i> Inputs</a></li>
<li><a href="./Lists.html"><i class="fas fa-angle-right"></i> Lists</a></li>
<li><a href="./Navbar.html"><i class="fas fa-angle-right"></i> Navbar</a></li>
<li><a href="./Modal.html"><i class="fas fa-angle-right"></i> Modal</a></li>
</ul>
</li>
<li><a href="../utilities.html">Utilities</a></li>
<li><a href="../contribute.html">Contribute</a></li>
</ul>
<span class="fas fa-bars sidebar-btn"></span>
</div>
<!-- <div class="grid-container"> -->
<nav class="navbar-responsive">
<!-- <img src="./static/output-onlinepngtools.png"> -->
<div class="logo"><span class="logo-icon"><i class="far fa-gem"></i></span>Radiant<span class="text-secondary">CSS</span></div>
<label for="btn" class="icon">
<span class="fas fa-bars"></span>
</label>
<input type="checkbox" id="btn">
<ul>
<li><a href="../index.html">Home</a></li>
<li>
<a href="../getStarted.html">Get Started</a>
</li>
<li><a href="../getInTouch.html">Get in Touch</a></li>
</ul>
</nav>

<div class="grid-container">

<div class="main-content">
<div class="main-head">
<h1 class="main-heading">Alerts</h1>
<p class='main-description'>Alert messages can be used to notify the user about something special: danger, success, information or warning. Danger! Indicates a dangerous or potentially negative action. Success! Indicates a successful or positive action. Info! Indicates a neutral informative change or action. Warning!</p>
</div>

<div class="main-example">
<h2 class="ex-heading">Original Alerts</h2>
<div class="ex-example">
<h1 class="alert alert-primary">This is a Primary Alert!!</h1>
<h1 class="alert alert-secondary">This is a Secondary Alert!!</h1>
<h1 class="alert alert-success">This is a Success Alert!!</h1>
<h1 class="alert alert-danger">This is a Danger Alert!!</h1>
<h1 class="alert alert-warning">This is a Warning Alert!!</h1>
<h1 class="alert alert-info">This is a Info Alert!!</h1>
<h1 class="alert alert-dark">This is a Dark Alert!!</h1>
<h1 class="alert alert-light">This is a Light Alert!!</h1>
</div>
<div class="ex-code">
<h2>Code</h2>
<div class="iframe-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28239%2C40%2C44%2C0%29&t=panda-syntax&wt=sharp&l=htmlmixed&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=0px&ph=0px&ln=false&fl=1&fm=Hack&fs=17.5px&lh=186%25&si=false&es=2x&wm=true&code=%253Ch1%2520class%253D%2522alert%2520alert-primary%2522%253EThis%2520is%2520a%2520Primary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-secondary%2522%253EThis%2520is%2520a%2520Secondary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-success%2522%253EThis%2520is%2520a%2520Success%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-danger%2522%253EThis%2520is%2520a%2520Danger%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-warning%2522%253EThis%2520is%2520a%2520Warning%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-info%2522%253EThis%2520is%2520a%2520Info%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-dark%2522%253EThis%2520is%2520a%2520Dark%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-light%2522%253EThis%2520is%2520a%2520Light%2520Alert%21%21%253C%252Fh1%253E"
style="height: 330px; border:0; transform: scale(1); overflow:hidden;"
sandbox="allow-scripts allow-same-origin">
</iframe>
</div>
</div>
</div>
<hr>
<div class="main-example">
<h2 class="ex-heading">Outlined Alerts</h2>
<div class="ex-example">
<h1 class="alert alert-outline alert-primary">This is a Primary Alert!!</h1>
<h1 class="alert alert-outline alert-secondary">This is a Secondary Alert!!</h1>
<h1 class="alert alert-outline alert-success">This is a Success Alert!!</h1>
<h1 class="alert alert-outline alert-danger">This is a Danger Alert!!</h1>
<h1 class="alert alert-outline alert-warning">This is a Warning Alert!!</h1>
<h1 class="alert alert-outline alert-info">This is a Info Alert!!</h1>
<h1 class="alert alert-outline alert-dark">This is a Dark Alert!!</h1>
<h1 class="alert alert-outline alert-light">This is a Light Alert!!</h1>
</div>
<div class="ex-code">
<h2>Code</h2>
<div class="iframe-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28239%2C40%2C44%2C0%29&t=panda-syntax&wt=sharp&l=htmlmixed&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=0px&ph=0px&ln=false&fl=1&fm=Hack&fs=17.5px&lh=186%25&si=false&es=2x&wm=true&code=%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-primary%2522%253EThis%2520is%2520a%2520Primary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-secondary%2522%253EThis%2520is%2520a%2520Secondary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-success%2522%253EThis%2520is%2520a%2520Success%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-danger%2522%253EThis%2520is%2520a%2520Danger%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-warning%2522%253EThis%2520is%2520a%2520Warning%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-info%2522%253EThis%2520is%2520a%2520Info%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-dark%2522%253EThis%2520is%2520a%2520Dark%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-light%2522%253EThis%2520is%2520a%2520Light%2520Alert%21%21%253C%252Fh1%253E"
style="height: 330px; border:0; transform: scale(1); overflow:hidden;"
sandbox="allow-scripts allow-same-origin">
</iframe>
</div>

</div>
</div>
<hr>
<div class="main-example">
<h2 class="ex-heading">Outlined Alerts without Border</h2>
<div class="ex-example">
<h1 class="alert alert-outline alert-border-none alert-primary">This is a Primary Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-secondary">This is a Secondary Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-success">This is a Success Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-danger">This is a Danger Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-warning">This is a Warning Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-info">This is a Info Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-dark">This is a Dark Alert!!</h1>
<h1 class="alert alert-outline alert-border-none alert-light">This is a Light Alert!!</h1>
</div>
<div class="ex-code">
<h2>Code</h2>
<div class="iframe-code">
<iframe
src="https://carbon.now.sh/embed?bg=rgba%28239%2C40%2C44%2C0%29&t=panda-syntax&wt=sharp&l=htmlmixed&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=0px&ph=0px&ln=false&fl=1&fm=Hack&fs=17.5px&lh=186%25&si=false&es=2x&wm=true&code=%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-primary%2522%253EThis%2520is%2520a%2520Primary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-secondary%2522%253EThis%2520is%2520a%2520Secondary%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-success%2522%253EThis%2520is%2520a%2520Success%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-danger%2522%253EThis%2520is%2520a%2520Danger%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-warning%2522%253EThis%2520is%2520a%2520Warning%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-info%2522%253EThis%2520is%2520a%2520Info%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-dark%2522%253EThis%2520is%2520a%2520Dark%2520Alert%21%21%253C%252Fh1%253E%250A%253Ch1%2520class%253D%2522alert%2520alert-outline%2520alert-border-none%2520alert-light%2522%253EThis%2520is%2520a%2520Light%2520Alert%21%21%253C%252Fh1%253E"
style="height: 458px; border:0; transform: scale(1); overflow:hidden;"
sandbox="allow-scripts allow-same-origin">
</iframe>
</div>
</div>
</div>
<hr>
</div>
<footer>
<h1>Connect with Us</h1>
<ul class="footer-links">
<li><a target="_blank" href="https://www.instagram.com/mrchepedev/"><span class="fab fa-instagram"></span>Instagram</a></li>
<li><a href="https://www.linkedin.com/in/bhupinder-singh-359867165/" target="_blank"><span class="fab fa-linkedin"></span>Linkedin</a></li>
<li><a href="https://twitter.com/chepedev/" target="_blank"><span class="fab fa-twitter"></span>Twitter</a></li>
<li><a href="https://bhupindersingh.netlify.app/" target="_blank"><span class="fas fa-globe"></span>Website</a></li>
</ul>
</footer>
</div>
<script src="../js/script.js"></script>
<script src="https://kit.fontawesome.com/116453b1e1.js" crossorigin="anonymous"></script>
</body>
</html>
Loading