Skip to content

Added some changes #990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
93 changes: 92 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,94 @@
/* Use your own code or past solution for Great Idea Web Page CSS here! */
body{
padding:70px;
}

.navbar-inverse{
background:#B22222;
}

.navbar-inverse .navbar-nav>li>a {
color:white;
}

.navbar-inverse .navbar-brand {
color:white;
}

li a{
font-style:'Courier Prime', monospace;
}

html{
height: 100%;
}


li:hover{
background:springgreen;
}

.rnav{
font-family: 'dimitriregular';
}


.nav-link{
margin-right :193px;
}

body{
background: url(https://images.unsplash.com/photo-1541728472741-03e45a58cf88?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=889&q=80);
background-repeat:repeat;
background-size:cover;
}

.jumbotron{
padding-bottom: 500px;
margin-top: 20px;
margin-left: 200px;
margin-right: 200px;
}

.col-md-12{
background-color: rgba(255,255,255,.9);
}


#content{
text-align:center;
padding-top:25%;

}


h1{
color:green;
font-weight: 700;
font-size:10em;
font-family:'dimitriregular';

}


h3{
color:rgb(17, 16, 16);
font-weight: 500;
font-family:'stellaregular';
font-style:italic;
font-size: 30px;
}

hr{
width:400px;
border-top:1px solid #f8f8f8;
border-bottom:1px solid rgba(0,0,0,0.2);
max-width: 90%;
}

.btn-default{
background:rgb(231, 197, 5);
}

.btn-default:hover{
background:springgreen;
}
94 changes: 86 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,94 @@
<!doctype html>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Great Idea - Responsive I</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>New One</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/2eb1dcc6a8.js"></script>
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet">
</head>
<link rel="stylesheet" type="text/css" href="css/index.css">

<link href="https://fonts.googleapis.com/css?family=Bangers|Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">

</head>

<body>
<!-- Use past code you created here for Great Idea Web Page or past solution for Great Idea Web Page HTML here! -->

<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">

<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>

<a class="navbar-brand rnav" href="#"> <i class="fas fa-spider"></i> Fsociety</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">

<ul class="nav navbar-nav">
<li><a href="#">About</a></li>
<li><a href="#">Testimonials</a></li>
</ul>

<ul class="nav navbar-nav navbar-right">
<li><a href="#">Menu</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</nav>


<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">

<div id="content">
<h1>Fsociety</h1>
<h3>Welcome To Fsociety</h3>
<hr>

<a href="#">

<button class="btn btn-default btn-lg">
<i class="fab fa-wolf-pack-battalion"></i>
Check Us </button>
</a>

<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
</div>
</div>

<br>





<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
11 changes: 11 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$("h1").on("mouseover",function(){
$(this).css("color","red")
})

$("h1").on("mouseout",function(){
$(this).css("color","blue")
})

$("h3").click(function(){
alert("DANGER AHEAD !!!!")
})