-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 3.13 KB
/
Copy pathindex.html
File metadata and controls
76 lines (76 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="styles.css"/>
<script src="https://kit.fontawesome.com/7bfdb387d2.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="content-wrapper">
<div class="navbar">
<div class="logo">
<img src="./images/Codepen.io_logo.png" alt="">
</div>
<div class="explore-tabs">
<h5>EXPLORE</h5>
<div class="explore-buttons">
<button>Pens</button>
<button>Projects</button>
<button>Posts</button>
<button>Collections</button>
<button>
Spark
<i class="fas fa-chevron-down"></i>
</button>
</div>
</div>
<div class="right-nav-buttons">
<button class="create-button">
Create
<i class="fas fa-chevron-down"></i>
</button>
<button class="search-icon">
<i class="fas fa-search"></i>
</button>
<button>Log In</button>
<button>Sign Up</button>
</div>
</div>
<div class="main-page">
<div class="main-page-text">
<div class="paragraph1">
<p>CodePen is a
<em>social development environment</em> for
front-end designers and developers. 👋
</p>
</div>
<div class="paragraph2">
<p>
It's the best place to build and deploy a website,
show off your work, build test cases, and find inspiration.
</p>
</div>
<div class="main-page-buttons">
<button class="main-page-signup-btn">Sign Up for Free</button>
<button>Learn More</button>
</div>
</div>
<div class="main-page-img">
<h4 class="img-header">
This is <em>CodePen Projects</em>!
</h4>
<img src="./images/image-1.png" alt="CodePen Example Image">
</div>
</div>
<div class="info-tabs">
<div class="tab-text">CodePen for <em>TEAMS</em></div>
<div class="tab-text">CodePen for <em>EDUCATION</em></div>
<div class="tab-text">CodePen for <em>PRIVACY</em></div>
<div class="tab-text">CodePen for <em>WRITING</em></div>
</div>
</div>
</div>
</body>
</html>