-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_page.html
74 lines (74 loc) · 3.52 KB
/
vscode_page.html
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
<html>
<head>
<style>
.top-button{
padding-right: 20px;
text-decoration: none;
color: gray;
font-size: 17px;
}
.middle-text{
color: gray;
display: flex;
justify-content:center;
font-size: 25px;
}
</style>
</head>
<body style="background-color: #0D1117;">
<div style="display: flex; justify-content: space-evenly; margin-top: 10px;">
<div style="padding-left: 100px; margin-top: 7px;">
<a href="/" class="top-button">Visual Studio Code</a>
<a href="/" class="top-button">Docs</a>
<a href="/" class="top-button">Updates</a>
<a href="/" class="top-button">Blog</a>
<a href="/" class="top-button">API</a>
<a href="/" class="top-button">Extensions</a>
<a href="/" class="top-button">FAQ</a>
<a href="/" class="top-button">Github Copilot</a>
</div>
<div style="padding-right: 150px;">
<input placeholder="Search Docs" style="background-color: #0D1117;; padding: 7px; font-size: 15px; box-shadow:none">
<button style="color: white; background-color: lightblue; padding:7px; font-size: 15px; box-shadow: none;">
Download
</button>
</div>
</div>
<hr style="border-color: gray;">
<div style="color: white; padding-top: 30px; display: flex;justify-content: center;">
<a href="/" style="color: lightblue; margin-right: 10px;">Version 1.95 </a>
is now available! Read about the new features and fixes from October.
</div>
<div style="color:white; display: flex;justify-content: center; margin-top: 80px;font-size: 70px; word-spacing: -2px; font-weight: bold;">
Code faster with AI
</div>
<div class="middle-text" style="margin-top: 10px;">
Visual Studio Code with GitHub Copilot supercharges your
</div>
<div class="middle-text">
code with AI-powered suggestions, right in your editor.
</div>
<div style="margin:20px; display: flex; justify-content: center;">
<button style="margin-right: 10px; padding: 12px; background-color: #003366; font-size:17px; color:white">
Download for Windows
</button>
<button style="padding: 12px; background-color: gray; font-size:17px; color:white">
Try GitHub Copilot
</button>
</div>
<div style="color:gray; display: flex; justify-content: center;">
<a href="/" style="color:#003366; margin-right:3px">Web</a>,
<a href="/" style="color:#003366; margin-right:3px">Insiders edition</a>or
<a href="/" style="color:#003366; margin-right:3px;margin-left:3px">other platforms</a>
</div>
<div style="color:gray; display: flex; justify-content: center; margin-top:18px;">
By using VS Code, you agree to its
<a href="/" style="margin-inline: 3px;">license</a>
and
<a href="/" style="margin-inline: 3px;">privacy statement.</a>
</div>
<div style="display:flex; justify-content:center; margin-top: 50px;">
<img src="https://code.visualstudio.com/assets/home/home-screenshot-copilot.png" style="height: 700px; width:1100px">
</div>
</body>
</html>