Skip to content

Commit cdde0d1

Browse files
committed
Setting font-family from docs.microsoft.com on all .htm files
1 parent 76dc28a commit cdde0d1

File tree

6 files changed

+102
-20
lines changed

6 files changed

+102
-20
lines changed

src/PerfView/SupportFiles/EventCounterVisualization.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11

22
<!DOCTYPE html>
3-
<html>
4-
3+
<html lang="en">
54
<head>
6-
<meta charset="utf-8">
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>Event Counter Visualization</title>
79
<style>
10+
body {
11+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
12+
font-weight: 400;
13+
text-rendering: optimizeLegibility;
14+
-webkit-font-smoothing: antialiased;
15+
}
16+
17+
hr {
18+
border-top: 3px double gray;
19+
}
20+
821
.line {
922
fill: none;
1023
stroke: steelblue;
@@ -17,7 +30,6 @@
1730
pointer-events: all;
1831
}
1932
</style>
20-
<title>Event Counter Visualization</title>
2133
</head>
2234

2335
<body>

src/PerfView/SupportFiles/HtmlReportUsersGuide.htm

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23
<head>
3-
<title>Understand Perf Reports</title>
44
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Understand Perf Reports</title>
8+
<style>
9+
body {
10+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
11+
font-weight: 400;
12+
text-rendering: optimizeLegibility;
13+
-webkit-font-smoothing: antialiased;
14+
}
15+
16+
hr {
17+
border-top: 3px double gray;
18+
}
19+
</style>
520
</head>
621
<body lang="en-us">
722
<hr />

src/PerfView/SupportFiles/PerfViewWebVideos.htm

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
33
<head>
4-
<title></title>
5-
<style type="text/css">
6-
.style1 {
7-
font-weight: normal;
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>PerfView Videos</title>
8+
<style>
9+
body {
10+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
11+
font-weight: 400;
12+
text-rendering: optimizeLegibility;
13+
-webkit-font-smoothing: antialiased;
14+
}
15+
16+
hr {
17+
border-top: 3px double gray;
818
}
919
</style>
1020
</head>
@@ -61,9 +71,8 @@ <h3>Collecting Data for Investigations into Time </h3>
6171

6272
<h3>CPU Investigations.&nbsp; </h3>
6373
<p>
64-
<span class="style1">
65-
The most common kind of Time investigation is investigating
66-
high CPU usage
74+
<span>
75+
The most common kind of Time investigation is investigating high CPU usage
6776
</span>
6877
</p>
6978
<ol>

src/PerfView/SupportFiles/UsersGuide.htm

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
47
<title>PerfView User's Guide</title>
8+
<style>
9+
body {
10+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
11+
font-weight: 400;
12+
text-rendering: optimizeLegibility;
13+
-webkit-font-smoothing: antialiased;
14+
}
15+
16+
hr {
17+
border-top: 3px double gray;
18+
}
19+
</style>
520
</head>
621
<body>
722
<!-- ************************************************************************************* -->
@@ -155,8 +170,7 @@ <h3>
155170
<a id="LatestVersion">Getting the latest version of PerfView</a>
156171
</h3>
157172
<p>
158-
You can get the latest version of PerfView by going to the <a href="http://www.microsoft.com/download">Microsoft Download Center</a>
159-
and using the search textbox to search for 'PerfView
173+
You can get the latest version of PerfView by going to the <a href="https://github.com/Microsoft/perfview/blob/master/documentation/Downloading.md">PerfView GitHub Download Page</a>
160174
</p>
161175
<hr />
162176
<hr />

src/TraceParserGen/UsersGuide.htm

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
37
<title>TraceParserGen Users Guide</title>
8+
<style>
9+
body {
10+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
11+
font-weight: 400;
12+
text-rendering: optimizeLegibility;
13+
-webkit-font-smoothing: antialiased;
14+
}
15+
16+
hr {
17+
border-top: 3px double gray;
18+
}
19+
</style>
420
</head>
521
<body>
622
<h2> TraceParserGen Users' Guide </h2>

src/related/EventRegister/UsersGuide.htm

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
37
<title>EventRegister Users Guide</title>
8+
<style>
9+
body {
10+
font-family: Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
11+
font-weight: 400;
12+
text-rendering: optimizeLegibility;
13+
-webkit-font-smoothing: antialiased;
14+
}
15+
16+
hr {
17+
border-top: 3px double gray;
18+
}
19+
</style>
420
</head>
521
<body>
622
<h2>

0 commit comments

Comments
 (0)