Skip to content
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

nav links were added #29

Open
wants to merge 1 commit 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
30 changes: 29 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body{
background:url(test3.png) no-repeat center center fixed;
background:linear-gradient(to right,#C33764,#1D2671);
/* background-repeat: no-repeat; */
background-size:cover;
/* background-position:center; */
Expand All @@ -18,3 +18,31 @@ body{
height:100px;
width: 100px;
}
.header{
margin-left: 10%;
margin-top: 100px;
}
.header a{
text-decoration: none;
font-size: 20px;
padding:10px;
}
.container{
border-top: 2px solid orange;
margin-top:20px;
padding-top: 20px;
}
img{
width:400px;
height:300px;
}
.left{
width:30%;
float: left;
height:200px;
}
.right{
float: right;
width: 50%;
height: 200px;
}
19 changes: 14 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,25 @@
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Revalia" rel="stylesheet">

</head>
<body>
<div class='header'>
<a href="#">Home</a>
<a href="#">Education</a>
<a href="#">Resume</a>
<a href="#">Profile</a>
</div>
<div class="container">


<h1 class="hero">We are comming with <span class="display-1">Watches</span> </h1>
<img class="img img-thumbnail d-block mx-auto" src="test.jpg" alt="Watches">
<div class='left'>
<img src="images/test.png">
</div>
<div class='right' style='color:gold'>
<h1>About the Product</h1>
<p>We are Coming with the watches </p>
</div>
</div>
</body>
</html>