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
23 changes: 0 additions & 23 deletions .gitignore

This file was deleted.

70 changes: 0 additions & 70 deletions README.md

This file was deleted.

76 changes: 76 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!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">
<title>Sample Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="container">
<section class="section1">
<div class="section1-para">
<h1>Welcome to our website</h1>
<p>This is a <b>Simple webpage</b>,a HTML and CSS template designed by <a
href="https://www.geeksforgeeks.org/" target="_blank">GeeksforGeeks Team</a> . The photos in
this
template are design by our <b>Graphic design Team</b>.
This template is designed to explain the basics of HTML and CSS in our first Web Design Course</p>
</div>
<div class="section1-head">
<span>
Section 1
</span>
</div>

</section>
<section class="section2">
<div class="section2-main">
<div class="section2-head">
<span>Section2</span>
</div>
<div class="card-main">
<div class="card">
<div>
<h1>GFG Content</h1>
<p>
A Computer Science portal for geeks. It
contains well written, well thought and well
explained computer science and
programming articles, quizzes and..
</p>
<button class="sec2-button">Learn More</button>
</div>
</div>
<div class="card">
<h1>GFG Practice</h1>
<p>
A practice poratal to test your knowledge of
data structures and algorithms by solving
problems asked in interviews of many tech
giants like, Amazon, Microsoft etc.
</p>
<button class="sec2-button">Learn More</button>

</div>
<div class="card">
<h1>GFG IDE</h1>
<p>
An integrated development environment to
run and test your codes in almost all of the
popular and widely used programming
languages.
</p>
<button class="sec2-button">Learn More</button>

</div>
</div>
</div>
</section>
</div>
</body>

</html>
Loading