-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJS_main.html
More file actions
139 lines (132 loc) · 4.55 KB
/
JS_main.html
File metadata and controls
139 lines (132 loc) · 4.55 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- 使用层叠样式表来控制本页面的呈现 -->
<link rel="stylesheet" href="assets/stylesheets/main.css">
<!-- 预加载字体 貌似没有成功-->
<link rel="preload" id="font-preloader" href="//cloud.typography.com/6966154/7969012/css/fonts.css" as="style" onload="if (document.querySelector('body')){ document.querySelector('body').classList.remove('font-loading');this.onload=null;this.rel='stylesheet' }" />
</head>
<body class="JS-static">
<div class="top-body">
<div class="top-context">
<header class="header">
<a href="/"> <img class="head-logo-big" src="assets/js-logo.png"> </a>
<div class="header-right-container">
<a class="header-link-button" href="">Try JavaScript</a>
<a class="header-link" href="">Learn</a>
<a class="header-link" href="">Resources</a>
<a class="header-link" href="">About</a>
</div>
</header>
</div>
<div class="mid-bottom javascript-hero" >
<div class="mid" style="background-image:url('assets/image-res.jpg');background-position:center">
<div class="row-container">
<div class="column-container">
<div class="add-padding">
<div class="title-section">
<div data-emptytext="Title">
<h2>Ready to try</h2>
</div>
</div>
<div class="title-section2">
<div data-emptytext="Title">
<h1 class="extra-big">JavaScript?</h1>
</div>
</div>
<div class="text-3 text section">
<div class="cmp-text">
<p>Begin learning here by typing in your first name surrounded by quotation marks, and ending
with a semicolon. For example, you could type the name
<code>"Jamie";</code> and then hit enter.</p>
</div>
</div>
<div class="form-section">
<div class="js-input">
<input type="text">
<span class="js-input-arrow"></span>
</div>
</div>
</div>
</div>
</div>
<div class="transparent-section">
</div>
</div>
<div class="bottom">
<div class="bottom-left-container" style="background-image:url('assets/bottom1.jpg');background-position:center">
<div class="bottom-content">
<div class="bottom-sapcer" style="height:120px">
</div>
<div class="bottom-title1">
<h3>
<span style="letter-sapcing:3.0px;">INTRODUNTION</span>
</h3>
</div>
<div class="bottom-title2">
<p>
<span class="bottom-title2-content">Courses and paths to get you going</span>
</p>
</div>
<div class="bottom-title3 ">
<a class="header-link-button" href="">GET STARTED</a>
</div>
</div>
</div>
<div class="bottom-mid-container" style="background-image:url('assets/bottom2.jpg');background-position:center">
<div class="bottom-content">
<div class="bottom-sapcer" style="height:120px">
</div>
<div class="bottom-title1">
<h3>
<span style="letter-sapcing:3.0px;">SKILL ASSESSMENT</span>
</h3>
</div>
<div class="bottom-title2">
<p>
<span class="bottom-title2-content">Know where your skills stand</span>
</p>
</div>
<div class="bottom-title3 ">
<a class="header-link-button" href="">MEASURE YOUR SKILLS</a>
</div>
</div>
</div>
<div class="bottom-right-container" style="background-image:url('assets/bottom3.jpg');background-position:center">
<div class="bottom-content">
<div class="bottom-sapcer" style="height:120px">
</div>
<div class="bottom-title1">
<h3>
<span style="letter-sapcing:3.0px;">INTRODUNTION</span>
</h3>
</div>
<div class="bottom-title2">
<p>
<span class="bottom-title2-content">See where Javascript ranks</span>
</p>
</div>
<div class="bottom-title3 ">
<a class="header-link-button" href="">DIVE INTO THE DATA</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<footer class="js-footer">
<div class="footer-left">
<a href=""><img class="bottom-left-small" src="assets/js-logo.png"></a>
<p class="copyright">© 2016 - 2019 JavaScript.com</p>
</div>
<div class="footer-right">
<a class="footer-link">Learn</a>
<span class="slash">/</span>
<a class="footer-link">Resources</a>
<span class="slash">/</span>
<a class="footer-link">About</a>
</div>
</footer>
</html>